Added Lycan chain. #28
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: Test Chains | |
on: | |
workflow_dispatch: | |
workflow_call: | |
pull_request: | |
paths: | |
- src/chains/definitions/** | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
timeout-minutes: 10 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Set up foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Install dependencies | |
uses: wevm/actions/.github/actions/bun@main | |
- name: Run tests | |
run: bun run test:chains |