Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

chore(deps): bump walkdir from 2.3.3 to 2.4.0 (#692) #26

chore(deps): bump walkdir from 2.3.3 to 2.4.0 (#692)

chore(deps): bump walkdir from 2.3.3 to 2.4.0 (#692) #26

Workflow file for this run

name: Tests
on:
push:
branches: [main, "release/**"]
pull_request:
branches: [main, "release/**"]
jobs:
tests-stable:
name: Tests (Stable)
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: cargo test
run: cargo test --workspace --all-features
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: cargo fmt
run: cargo +nightly fmt --all -- --check
- name: cargo clippy
run: cargo +nightly clippy --workspace --all-features -- -D warnings
- name: cargo check no-default-features
run: |
cd crates/revm
cargo check --no-default-features
- name: cargo check serde
run: |
cd crates/revm
cargo check --no-default-features --features serde
- name: cargo check std
run: |
cd crates/revm
cargo check --no-default-features --features std