Skip to content

Commit 7c39a10

Browse files
committed
Add non-required test to bypass the lockfile
1 parent 9ad2ba3 commit 7c39a10

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

.github/workflows/rust.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Format
17-
run: cargo fmt --check
18-
- name: clippy
19-
if: always()
16+
- run: cargo fmt --check
17+
- if: always()
2018
run: cargo clippy
2119

2220
rust-tests:
@@ -26,7 +24,16 @@ jobs:
2624
- uses: actions/checkout@v4
2725
with:
2826
submodules: true
29-
- name: Check
30-
run: cargo check
31-
- name: Run tests
32-
run: cargo test -r --verbose
27+
- run: cargo check
28+
- run: cargo test -r --verbose
29+
30+
rust-latest-deps:
31+
runs-on: ubuntu-latest
32+
continue-on-error: true
33+
34+
steps:
35+
- uses: actions/checkout@v4
36+
with:
37+
submodules: true
38+
- run: cargo update --verbose
39+
- run: cargo test -r --verbose

0 commit comments

Comments
 (0)