Merge pull request #12 from AFLplusplus/build-and-test-action
build and test action
This commit is contained in:
commit
2112f1df2f
20
.github/workflows/build_and_test.yml
vendored
Normal file
20
.github/workflows/build_and_test.yml
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user