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 6816d17 commit 061af29Copy full SHA for 061af29
.github/workflows/benches.yml
@@ -6,22 +6,21 @@ on:
6
- ".github/workflows/benches.yml"
7
- "benches/**"
8
9
-defaults:
10
- run:
11
- working-directory: ./benches
12
-
13
jobs:
14
benches:
15
runs-on: ubuntu-latest
+ defaults:
+ run:
+ working-directory: ./benches
16
steps:
17
- uses: actions/checkout@v4
18
- uses: dtolnay/rust-toolchain@master
19
with:
20
toolchain: nightly
21
components: clippy, rustfmt
22
- name: Rustfmt
23
- run: cargo fmt --all -- --check
+ run: cargo fmt -- --check
24
- name: Clippy
25
- run: cargo clippy --all --all-targets -- -D warnings
+ run: cargo clippy --all-targets -- -D warnings
26
- name: Build
27
run: RUSTFLAGS=-Dwarnings cargo build --all-targets
0 commit comments