We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba7f515 commit 6a46506Copy full SHA for 6a46506
.github/workflows/benches.yml
@@ -9,15 +9,18 @@ on:
9
jobs:
10
benches:
11
runs-on: ubuntu-latest
12
+ defaults:
13
+ run:
14
+ working-directory: ./benches
15
steps:
16
- uses: actions/checkout@v4
17
- uses: dtolnay/rust-toolchain@master
18
with:
19
toolchain: nightly
20
components: clippy, rustfmt
21
- name: Rustfmt
- run: cargo fmt --all -- --check
22
+ run: cargo fmt -- --check
23
- name: Clippy
- run: cargo clippy --all --all-targets -- -D warnings
24
+ run: cargo clippy --all-targets -- -D warnings
25
- name: Build
26
run: RUSTFLAGS=-Dwarnings cargo build --all-targets
0 commit comments