We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aff84a commit 185e37fCopy full SHA for 185e37f
1 file changed
.github/workflows/ci.yml
@@ -20,12 +20,16 @@ jobs:
20
- stable
21
- beta
22
- nightly
23
- - 1.64.0 # MSRV
+ - 1.65.0 # MSRV
24
steps:
25
- uses: actions/checkout@v4
26
- uses: dtolnay/rust-toolchain@master
27
with:
28
toolchain: ${{ matrix.rust }}
29
+ - name: Pin versions for MSRV
30
+ if: "${{ matrix.rust == '1.65.0' }}"
31
+ run: |
32
+ cargo update -p regex --precise 1.8.4
33
- name: Build
34
run: cargo build --verbose
35
- name: Run tests
0 commit comments