fixed no-default-features build path

This commit is contained in:
Dominik Maier 2021-02-26 08:38:44 +01:00
parent d48524168a
commit c23376a03f

View File

@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --all-features --verbose
run: cd libafl && cargo build --all-features --verbose
test:
runs-on: ubuntu-latest
steps:
@ -35,16 +35,16 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --no-default-features --verbose
run: cd libafl && cargo build --no-default-features --verbose
no-std-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test
run: cargo test --no-default-features --verbose
run: cd libafl && cargo test --no-default-features --verbose
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test
run: cd libafl && cargo doc
run: cargo doc