Bump romeovs/lcov-reporter-action from 4cf015aa4afa87b78238301f1e3dc140ea0e1ec6 to 87a815f34ec27a5826abba44ce09bbc688da58fd #94
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: snapshot | |
on: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- README.md | |
- .gitignore | |
pull_request: | |
branches: ["*"] | |
paths-ignore: | |
- README.md | |
- .gitignore | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
check: | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: true | |
name: forge snapshot | |
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 snapshot | |
run: | | |
forge snapshot --check | |
id: snapshot | |
env: | |
# make fuzzing deterministic to keep snapshots consistent | |
FOUNDRY_FUZZ_SEED: 42 |