Skip to content

Workflow file for this run

name: Tests
concurrency:
cancel-in-progress: true
group: ${{github.workflow}}-${{github.ref}}
on:
push:
branches:
- master
<<<<<<< HEAD

Check failure on line 11 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
<<<<<<< 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