Skip to content

Commit 9feb0af

Browse files
committed
ci: fix msrv test
1 parent 0845c43 commit 9feb0af

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ jobs:
5555

5656
- name: Downgrade for MSRV
5757
if: matrix.toolchain.name == 'msrv'
58-
run: just downgrade-for-msrv
58+
run: |
59+
rm -f Cargo.lock
60+
just downgrade-for-msrv
5961
6062
- name: Test
6163
run: just test-no-coverage

justfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ _list:
88
# Downgrade dependencies necessary to run MSRV checks/tests.
99
[private]
1010
downgrade-for-msrv:
11-
rm Cargo.lock
1211
# No downgrades currently needed.
1312

1413
# Check project

tests/issues.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fn gl_issue_16() {
3737
}
3838
}
3939

40-
#[allow(unused)] // compile-only test
40+
#[allow(unused, clippy::assertions_on_constants)] // compile-only test
4141
#[test]
4242
fn gl_issue_17() {
4343
use std::future::pending;

0 commit comments

Comments
 (0)