Skip to content

Merge pull request #34 from vedantmgoyal9/patch-1 #26

Merge pull request #34 from vedantmgoyal9/patch-1

Merge pull request #34 from vedantmgoyal9/patch-1 #26

Workflow file for this run

name: tests
on:
push:
paths-ignore:
- 'LICENSE-*'
- '**.md'
pull_request:
paths-ignore:
- 'LICENSE-*'
- '**.md'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }}
cancel-in-progress: true
jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt, clippy
- name: Cargo fmt
run: cargo fmt --all -- --check
- name: Cargo clippy
run: cargo clippy --all-features -- -D warnings
tests:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest]
rust: [ stable ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Test
run: cargo test --verbose
- name: Compile fuzz suite
run: cargo check --manifest-path fuzz/Cargo.toml