Skip to content

Commit

Permalink
Updating to latest reth (#33)
Browse files Browse the repository at this point in the history
* updating to latest reth

* msrv 1.82

* ci to 1.82
  • Loading branch information
loocapro authored Oct 29, 2024
1 parent a0077f1 commit 4b6fb9b
Show file tree
Hide file tree
Showing 11 changed files with 766 additions and 604 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ["stable", "nightly", "1.81"] # MSRV
rust: ["stable", "nightly", "1.82"] # MSRV
flags: ["", "--all-features"]
steps:
- uses: actions/checkout@v3
Expand All @@ -28,10 +28,10 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# Only run tests on latest stable and above
- name: build
if: ${{ matrix.rust == '1.81' }} # MSRV
if: ${{ matrix.rust == '1.82' }} # MSRV
run: cargo build --workspace ${{ matrix.flags }}
- name: test
if: ${{ matrix.rust != '1.81' }} # MSRV
if: ${{ matrix.rust != '1.82' }} # MSRV
run: cargo test --workspace ${{ matrix.flags }}
feature-checks:
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit 4b6fb9b

Please sign in to comment.