fix: string slice panic & automated smart contract tests #151
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: ci | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- ".github/**" | |
- "docs/**" | |
- "README.md" | |
concurrency: | |
# Support push/pr as event types with different behaviors each: | |
# 1. push: queue up builds | |
# 2. pr: only allow one run per PR | |
group: ${{ github.workflow }}-${{ github.event_name }}${{ github.event.pull_request.number }} | |
# If there is already a workflow running for the same pull request, cancel it | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
tasks: | |
name: "${{ matrix.cargo.name }}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
cargo: | |
- name: "Clippy" | |
cmd: clippy | |
args: --workspace --all-features --all-targets -- -D warnings | |
rust: stable | |
- name: "Formatting" | |
cmd: fmt | |
args: --all -- --check | |
rust: nightly | |
- name: "Tests" | |
cmd: nextest | |
args: run --workspace --all-features | |
rust: stable | |
- name: "Documentation Tests" | |
cmd: test | |
args: --workspace --doc --all-features | |
rust: stable | |
env: | |
RUST_BACKTRACE: full | |
steps: | |
- uses: actions/checkout@v3 | |
# Install Rust toolchain | |
- name: "Install Rust ${{ matrix.cargo.rust }}" | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.cargo.rust }} | |
profile: default | |
override: true | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
# pre-build contracts to avoid race condition installing solc during `forge create` in tests | |
- name: Build contracts | |
run: forge build -C contracts --cache-path=target/.forge/cache --out=target/.forge/out | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@v1 | |
with: | |
tool: nextest | |
- name: "Cargo ${{ matrix.cargo.name }}" | |
uses: actions-rs/cargo@v1 | |
with: | |
command: ${{ matrix.cargo.cmd }} | |
args: ${{ matrix.cargo.args }} | |
misspell: | |
name: Spellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: misspell | |
uses: reviewdog/action-misspell@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
locale: "US" |