This file contains 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: Tests | ||
concurrency: | ||
cancel-in-progress: true | ||
group: ${{github.workflow}}-${{github.ref}} | ||
on: | ||
push: | ||
branches: | ||
- master | ||
<<<<<<< HEAD | ||
<<<<<<< HEAD | ||
- mainnet | ||
- testnet-goerli | ||
- dev | ||
======= | ||
- m2-mainnet | ||
- m2-mainnet-fixes | ||
>>>>>>> fixes(m2-mainnet): combined pr for all m2-mainnet fixs (#162) | ||
======= | ||
- mainnet | ||
- testnet-goerli | ||
- dev | ||
>>>>>>> chore: update core submodule and fix broken docs links (#188) | ||
pull_request: | ||
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 | ||
with: | ||
version: nightly | ||
- name: Run Forge build | ||
run: | | ||
forge --version | ||
forge build --sizes | ||
id: build | ||
- name: Run tests | ||
shell: bash | ||
run: | | ||
forge test --no-match-contract FFI | ||
env: | ||
RPC_MAINNET: ${{ secrets.RPC_MAINNET }} | ||
CHAIN_ID: ${{ secrets.CHAIN_ID }} | ||
id: test |