Skip to content

Commit

Permalink
Ditch Travis CI and switch to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrus-and committed Apr 14, 2023
1 parent d02dea7 commit 59c9560
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down

0 comments on commit 59c9560

Please sign in to comment.