Skip to content

Fix fmt

Fix fmt #1

Workflow file for this run

name: Benches
on:
push:
branches: [ master ]
paths-ignore:
- "**.md"
- "distr_test/**"
- "examples/**"
pull_request:
branches: [ master ]
paths-ignore:
- "**.md"
- "distr_test/**"
- "examples/**"
defaults:
run:
working-directory: ./benches
jobs:
clippy-fmt:
name: Benches: Check Clippy and rustfmt

Check failure on line 23 in .github/workflows/benches.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/benches.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy, rustfmt
- name: Rustfmt
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --workspace -- -D warnings
benches:
name: Benches: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- name: Test
run: RUSTFLAGS=-Dwarnings cargo test --benches