Skip to content

Add feature gating for slow tests and cache SRS using git LFS #9

Add feature gating for slow tests and cache SRS using git LFS

Add feature gating for slow tests and cache SRS using git LFS #9

Workflow file for this run

name: Foundry Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
FOUNDRY_PROFILE: ci
jobs:
check:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./contracts
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run Forge build
run: |
forge build --sizes
id: build
- name: Run Forge tests
run: |
forge test -vvv
id: test