Skip to content

update fuzz target dependencies #19

update fuzz target dependencies

update fuzz target dependencies #19

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions/cache@v3
with:
path: tables
key: ${{ runner.os }}-${{ hashFiles('tables/*/TEST-SOURCE.txt') }}
- run: ./download-test-tables.sh
- uses: actions-rs/cargo@v1
with:
command: test
- uses: actions-rs/cargo@v1
with:
command: test
args: --features variant
- uses: actions-rs/cargo@v1
with:
command: bench
- uses: actions-rs/cargo@v1
with:
command: check
args: --manifest-path fuzz/Cargo.toml
env:
RUSTFLAGS: --cfg fuzzing