Skip to content

feat: reject both input and output fees #996

feat: reject both input and output fees

feat: reject both input and output fees #996

Workflow file for this run

name: unit-test
on:
push:
branches:
- main
pull_request:
env:
FOUNDRY_PROFILE: ci
jobs:
unit-tests:
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
with:
version: nightly
- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: Check fmt
run: |
forge fmt --check
id: fmt
- name: Run Forge unit tests
run: |
forge test -vvv
id: test