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 6df928c commit f5ee2f1Copy full SHA for f5ee2f1
.github/workflows/ci.yml
@@ -13,7 +13,7 @@ jobs:
13
strategy:
14
fail-fast: false
15
matrix:
16
- rust: ["stable", "nightly", "1.81"] # MSRV
+ rust: ["stable", "nightly", "1.82"] # MSRV
17
flags: ["", "--all-features"]
18
steps:
19
- uses: actions/checkout@v3
@@ -28,10 +28,10 @@ jobs:
28
repo-token: ${{ secrets.GITHUB_TOKEN }}
29
# Only run tests on latest stable and above
30
- name: build
31
- if: ${{ matrix.rust == '1.81' }} # MSRV
+ if: ${{ matrix.rust == '1.82' }} # MSRV
32
run: cargo build --workspace ${{ matrix.flags }}
33
- name: test
34
- if: ${{ matrix.rust != '1.81' }} # MSRV
+ if: ${{ matrix.rust != '1.82' }} # MSRV
35
run: cargo test --workspace ${{ matrix.flags }}
36
feature-checks:
37
runs-on: ubuntu-latest
0 commit comments