mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2025-07-26 04:05:40 +02:00
Ditch Travis CI and switch to GitHub actions
This commit is contained in:
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
|
Reference in New Issue
Block a user