Skip to content

minor changes to tests #47

minor changes to tests

minor changes to tests #47

Workflow file for this run

name: test
on:
push:
branches: [ "dev-2.0" ]
pull_request:
branches: [ "main" ]
env:
FOUNDRY_PROFILE: ci
jobs:
check:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Foundry
uses: foundry-rs/[email protected]
with:
version: stable
- name: Run Forge build
run: |
forge --version
forge soldeer install
forge build --sizes
id: build
- name: Run Forge tests
run: |
forge test -vvv
id: test