File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ jobs:
2020 strategy :
2121 fail-fast : false
2222 matrix :
23- rust : ["stable", "nightly", "1.79 "] # MSRV
23+ rust : ["stable", "nightly", "1.81 "] # MSRV
2424 flags : ["--no-default-features", "", "--all-features"]
2525 exclude :
2626 # Some features have higher MSRV.
27- - rust : " 1.79 " # MSRV
27+ - rust : " 1.81 " # MSRV
2828 flags : " --all-features"
2929 steps :
3030 - uses : actions/checkout@v3
@@ -43,13 +43,13 @@ jobs:
4343 cache-on-failure : true
4444 # Only run tests on latest stable and above
4545 - name : Install cargo-nextest
46- if : ${{ matrix.rust != '1.79 ' }} # MSRV
46+ if : ${{ matrix.rust != '1.81 ' }} # MSRV
4747 uses : taiki-e/install-action@nextest
4848 - name : build
49- if : ${{ matrix.rust == '1.79 ' }} # MSRV
49+ if : ${{ matrix.rust == '1.81 ' }} # MSRV
5050 run : cargo build --workspace ${{ matrix.flags }}
5151 - name : test
52- if : ${{ matrix.rust != '1.79 ' }} # MSRV
52+ if : ${{ matrix.rust != '1.81 ' }} # MSRV
5353 run : cargo nextest run --workspace ${{ matrix.flags }}
5454
5555 doctest :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description = "Fork database used by Foundry"
44version = " 0.8.0"
55edition = " 2021"
66# Remember to update clippy.toml as well
7- rust-version = " 1.79 "
7+ rust-version = " 1.81 "
88authors = [" Foundry Contributors" ]
99license = " MIT OR Apache-2.0"
1010homepage = " https://github.com/foundry-rs/foundry-fork-db"
Original file line number Diff line number Diff line change 1- msrv = " 1.79 "
1+ msrv = " 1.81 "
You can’t perform that action at this time.
0 commit comments