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 9ad2ba3 commit 7c39a10Copy full SHA for 7c39a10
.github/workflows/rust.yml
@@ -13,10 +13,8 @@ jobs:
13
14
steps:
15
- uses: actions/checkout@v4
16
- - name: Format
17
- run: cargo fmt --check
18
- - name: clippy
19
- if: always()
+ - run: cargo fmt --check
+ - if: always()
20
run: cargo clippy
21
22
rust-tests:
@@ -26,7 +24,16 @@ jobs:
26
24
27
25
with:
28
submodules: true
29
- - name: Check
30
- run: cargo check
31
- - name: Run tests
32
- run: cargo test -r --verbose
+ - run: cargo check
+ - run: cargo test -r --verbose
+
+ rust-latest-deps:
+ runs-on: ubuntu-latest
+ continue-on-error: true
33
34
+ steps:
35
+ - uses: actions/checkout@v4
36
+ with:
37
+ submodules: true
38
+ - run: cargo update --verbose
39
0 commit comments