Skip to content

Rework max

Rework max #56

Workflow file for this run

name: test
on:
push:
branches:
- main
- master
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: tests
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- 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
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo clippy --workspace --all-targets --all-features
env:
RUSTFLAGS: -Dwarnings
fmt:
name: fmt
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all --check
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