From 5aae4173d79b103b19d090a8b4939f7eaff833b3 Mon Sep 17 00:00:00 2001 From: Evan Richter Date: Wed, 24 Feb 2021 19:15:41 -0600 Subject: [PATCH] build and test action --- .github/workflows/build_and_test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build_and_test.yml diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml new file mode 100644 index 0000000000..d4fabe52a1 --- /dev/null +++ b/.github/workflows/build_and_test.yml @@ -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