build and test action

This commit is contained in:
Evan Richter 2021-02-24 19:15:41 -06:00
parent 58841ed82e
commit 5aae4173d7
No known key found for this signature in database
GPG Key ID: CCB6AE3EF39EB1AC

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