Skip to content

Bump actions/checkout from 3 to 4 #28

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #28

Workflow file for this run

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