Merge pull request #12 from AFLplusplus/build-and-test-action

build and test action
This commit is contained in:
Dominik Maier 2021-02-25 17:18:34 +01:00 committed by GitHub
commit 2112f1df2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
.github/workflows/build_and_test.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Build and Test
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cd libafl && cargo build --verbose
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test
run: cd libafl && cargo test --verbose