diff options
author | van Hauser <vh@thc.org> | 2020-12-21 12:06:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-21 12:06:06 +0100 |
commit | 1078409875cacc5626a3961e08cf67c68049d22a (patch) | |
tree | a38b2666148ca018076ef12abfd9e95c1215f716 | |
parent | 8e712d1a740b30f9e2d5655d97d4cac6e8aed543 (diff) | |
download | afl++-1078409875cacc5626a3961e08cf67c68049d22a.tar.gz |
Create ci.yml
-rw-r--r-- | .github/workflows/ci.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..1f7d23f4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: + push: + branches: [ stable, dev ] + pull_request: + branches: [ stable, dev ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: make + run: make + - name: make tests + run: make tests |