Skip to content

chore: update to axiom-std v0.1.4 (#4) #25

chore: update to axiom-std v0.1.4 (#4)

chore: update to axiom-std v0.1.4 (#4) #25

Workflow file for this run

name: tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- "**"
env:
FOUNDRY_PROFILE: ci
jobs:
check:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-293fad73670b7b59ca901c7f2105bf7a29165a90
- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: Run Forge tests
run: |
export PROVIDER_URI_SEPOLIA=${{ secrets.PROVIDER_URI_SEPOLIA }}
forge test -vvvv
id: test