chore: merge v37 version into develop #85
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
concurrency: | |
cancel-in-progress: true | |
group: ${{github.workflow}}-${{github.ref}} | |
on: | |
push: | |
branches: [main, develop, "release/**"] | |
pull_request: | |
branches: [main, develop, "release/**"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
name: test ${{ matrix.rust }} ${{ matrix.flags }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: ["stable", "beta", "nightly"] | |
# flags: ["--no-default-features", "", "--all-features"] | |
flags: ["--no-default-features", "", "--features bsc", "--features optimism,opbnb"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo test --workspace ${{ matrix.flags }} | |
# test-no-std: | |
# name: test no_std | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 30 | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: dtolnay/rust-toolchain@stable | |
# with: | |
# targets: riscv32imac-unknown-none-elf | |
# - run: cargo check --target riscv32imac-unknown-none-elf --no-default-features | |
check: | |
name: check ${{ matrix.features }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
features: ["", "serde", "std"] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
cd crates/revm | |
cargo check --no-default-features --features=${{ matrix.features }} | |
clippy: | |
name: clippy / ${{ matrix.network }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
include: | |
- network: optimism | |
extra-features: "opbnb" | |
- network: bsc | |
extra-features: "" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo clippy --workspace --all-targets --features "${{ matrix.network }} ${{ matrix.extra-features }}" | |
env: | |
RUSTFLAGS: -Dwarnings | |
docs: | |
name: docs / ${{ matrix.network }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
include: | |
- network: optimism | |
extra-features: "opbnb" | |
- network: bsc | |
extra-features: "" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rust-docs | |
- run: cargo doc --workspace --no-deps --document-private-items --features "${{ matrix.network }} ${{ matrix.extra-features }}" | |
env: | |
RUSTDOCFLAGS: "--cfg docsrs -D warnings" | |
fmt: | |
name: fmt | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- run: cargo fmt --all --check |