Skip to content

Refactoring and updates #59

Refactoring and updates

Refactoring and updates #59

Workflow file for this run

name: test
on:
push:
branches:
- main
- master
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
name: fmt
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
components: rustfmt
- run: cargo fmt --all --check
test:
name: tests
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: curl -L https://foundry.paradigm.xyz | bash
- run: /home/runner/.config/.foundry/bin/foundryup
- run: ls -l /home/runner/.config/.foundry/bin
# - run: /home/runner/.config/.foundry/bin/anvil --help
- run: /home/runner/.config/.foundry/bin/anvil --help
- run: cargo test --workspace --all-targets --all-features
env:
ANVIL_BIN: /home/runner/.config/.foundry/bin/anvil
RUSTFLAGS: -Dwarnings
clippy:
name: clippy
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@clippy
with:
toolchain: nightly
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo clippy --workspace --all-targets --all-features
env:
RUSTFLAGS: -Dwarnings
typos-check:
name: TyposCheck
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/[email protected]
with:
config: ./typos.toml
isolated: true