We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d07ea98 commit 1c63dc3Copy full SHA for 1c63dc3
1 file changed
.github/workflows/rust.yml
@@ -1,4 +1,4 @@
1
-name: Rust
+name: Rust CI
2
3
on:
4
push:
@@ -15,8 +15,20 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v4
19
- - name: Build
20
- run: cargo build --verbose
21
- - name: Run tests
22
- run: cargo test --verbose
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ - name: Check formatting
+ run: cargo fmt -- --check
23
24
+ - name: Run clippy
25
+ run: cargo clippy --all-targets --all-features -- -D warnings
26
27
+ - name: Build
28
+ run: cargo build --verbose
29
30
+ - name: Run tests
31
+ run: cargo test --verbose
32
33
+ - name: Release build
34
+ run: cargo build --release
0 commit comments