fix: change provider value used by avs_reader in tests #423
Workflow file for this run
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: Foundry CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [ '**' ] | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
m2: | |
strategy: | |
fail-fast: true | |
name: Foundry project | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./crates/m2_contracts | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: stable | |
- name: Show Forge version | |
run: forge --version | |
- name: Run Forge fmt | |
run: forge fmt --check | |
- name: Run Forge build | |
run: forge build --sizes | |
slashing: | |
strategy: | |
fail-fast: true | |
name: Foundry project | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./crates/operator_sets_contracts | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: stable | |
- name: Show Forge version | |
run: forge --version | |
- name: Run Forge fmt | |
run: forge fmt --check | |
- name: Run Forge build | |
run: forge build --sizes |