Skip to content

Commit 4b6fb9b

Browse files
authored
Updating to latest reth (#33)
* updating to latest reth * msrv 1.82 * ci to 1.82
1 parent a0077f1 commit 4b6fb9b

File tree

11 files changed

+766
-604
lines changed

11 files changed

+766
-604
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
rust: ["stable", "nightly", "1.81"] # MSRV
16+
rust: ["stable", "nightly", "1.82"] # MSRV
1717
flags: ["", "--all-features"]
1818
steps:
1919
- uses: actions/checkout@v3
@@ -28,10 +28,10 @@ jobs:
2828
repo-token: ${{ secrets.GITHUB_TOKEN }}
2929
# Only run tests on latest stable and above
3030
- name: build
31-
if: ${{ matrix.rust == '1.81' }} # MSRV
31+
if: ${{ matrix.rust == '1.82' }} # MSRV
3232
run: cargo build --workspace ${{ matrix.flags }}
3333
- name: test
34-
if: ${{ matrix.rust != '1.81' }} # MSRV
34+
if: ${{ matrix.rust != '1.82' }} # MSRV
3535
run: cargo test --workspace ${{ matrix.flags }}
3636
feature-checks:
3737
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)