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 cfeb2ea commit b5ae843Copy full SHA for b5ae843
.github/workflows/build.yml
@@ -12,12 +12,26 @@ jobs:
12
- uses: actions/checkout@v4
13
- run: cargo build --verbose
14
15
+ build-msrv:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - run: rustup toolchain install 1.61
20
+ - run: cargo +1.61 build --verbose
21
+
22
test:
23
runs-on: ubuntu-latest
24
steps:
25
26
- run: cargo test --verbose
27
28
+ test-msrv:
29
30
31
32
33
+ - run: cargo +1.61 test --verbose
34
35
format-check:
36
37
0 commit comments