Skip to content

Update base_sepolia RPC endpoint in foundry.toml #3

Update base_sepolia RPC endpoint in foundry.toml

Update base_sepolia RPC endpoint in foundry.toml #3

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
rust:
name: Rust (fmt, clippy, test)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: cargo fmt
run: cargo fmt --check
- name: cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: cargo test
run: cargo test
foundry:
name: Foundry (build, test)
runs-on: ubuntu-latest
defaults:
run:
working-directory: contracts
steps:
- uses: actions/checkout@v4
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: forge build
run: forge build
- name: forge test
run: forge test -vv