Skip to content

remove unused

remove unused #29

Workflow file for this run

name: Contracts
permissions:
contents: read
on:
push:
pull_request:
workflow_dispatch:
env:
FOUNDRY_PROFILE: ci
jobs:
test:
name: Smart Contract Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Initialize contract dependencies
run: cd contracts && git submodule update --init --recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Show Forge version
run: forge --version
- name: Run Forge fmt
run: make lint-contracts
- name: Run Forge build
run: make build-contracts
- name: Run Forge tests
run: make test-contracts