Skip to content

estimate tco2 redemption amount given pool redemption amount #92

estimate tco2 redemption amount given pool redemption amount

estimate tco2 redemption amount given pool redemption amount #92

Workflow file for this run

name: test
on:
push:
branches: [ "main" ]
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@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Run Forge build
run: |
forge --version
forge build --sizes --via-ir
id: build
- name: Check formatting
run: forge fmt --check
id: fmt
- name: Run Forge tests
run: |
forge test -vvv --via-ir
id: test