mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-24 13:59:17 +01:00
Ditch Travis CI and switch to GitHub actions
This commit is contained in:
parent
d02dea79bc
commit
59c9560ac0
20
.github/workflows/ci.yml
vendored
Normal file
20
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
name: CI
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
Tests:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
pip install jsonschema yamllint
|
||||
- name: Run tests
|
||||
run: |
|
||||
make lint
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
language: python
|
||||
python:
|
||||
- 3.6
|
||||
install:
|
||||
- pip install jsonschema yamllint
|
||||
script:
|
||||
- make lint
|
@ -1,7 +1,6 @@
|
||||
# GTFOBins [![Build Status][]][travis]
|
||||
# GTFOBins
|
||||
|
||||
[Build Status]: https://travis-ci.com/GTFOBins/GTFOBins.github.io.svg?branch=master
|
||||
[travis]: https://travis-ci.com/GTFOBins/GTFOBins.github.io
|
||||
[![CI status](https://github.com/GTFOBins/GTFOBins.github.io/actions/workflows/ci.yml/badge.svg)](https://github.com/GTFOBins/GTFOBins.github.io/actions?query=workflow:CI)
|
||||
|
||||
GTFOBins is a curated list of Unix binaries that can be used to bypass local security restrictions in misconfigured systems.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user