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 5214ac3 commit 9b19411Copy full SHA for 9b19411
.github/workflows/rust.yml
@@ -15,9 +15,32 @@ jobs:
15
16
steps:
17
- uses: actions/checkout@v4
18
- - name: Build
19
- run: cargo build --verbose
20
- - name: Clippy
21
- run: cargo clippy
22
- - name: Run tests
23
- run: cargo test --release --verbose
+ - run: cargo build --verbose
+
+ test:
+ runs-on: ubuntu-latest
+ steps:
24
+ - uses: actions/checkout@v4
25
+ - run: cargo test --release --verbose
26
27
+ clippy:
28
29
30
31
32
+ - run: cargo clippy
33
34
+ build-benchmarks:
35
36
37
38
39
+ - run: cargo build --benches
40
41
+ doc:
42
43
44
45
46
+ - run: cargo doc
0 commit comments