This repository was archived by the owner on Jun 16, 2025. It is now read-only.
evm: use messageFee > 0 #174
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: EVM CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'evm/**' | |
push: | |
branches: | |
- main | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
test: | |
strategy: | |
fail-fast: true | |
name: forge test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run Forge build | |
working-directory: evm | |
run: make build | |
- name: Run unit tests | |
working-directory: evm | |
run: make unit-test | |
- name: Run Integration tests | |
working-directory: evm | |
run: make integration-test |