Skip to content

Commit a6ac766

Browse files
committed
Fix CI
1 parent bff6733 commit a6ac766

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ on:
55
branches:
66
- '*'
77

8-
env:
9-
msrv: 1.56.0
10-
nightly: nightly-2025-11-02
11-
128
jobs:
139
lints:
1410
name: Rustfmt
@@ -55,7 +51,10 @@ jobs:
5551
runs-on: ubuntu-latest
5652
strategy:
5753
matrix:
58-
toolchain: [stable, ${{ env.msrv }}, ${{ env.nightly }}]
54+
toolchain:
55+
- stable
56+
- 1.56.0 # MSRV
57+
- nightly-2025-11-02 # locked nightly
5958

6059
steps:
6160
- name: Checkout sources
@@ -68,4 +67,3 @@ jobs:
6867

6968
- name: Run tests
7069
run: cargo test
71-

0 commit comments

Comments
 (0)