1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-03 22:26:05 +02:00

Ditch Travis CI and switch to GitHub actions

This commit is contained in:
Andrea Cardaci 2023-04-14 08:58:48 +02:00
parent d02dea79bc
commit 59c9560ac0
3 changed files with 22 additions and 11 deletions

20
.github/workflows/ci.yml vendored Normal file
View 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

View File

@ -1,8 +0,0 @@
---
language: python
python:
- 3.6
install:
- pip install jsonschema yamllint
script:
- make lint

View File

@ -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.