Skip to content

fix: simulation path #4

fix: simulation path

fix: simulation path #4

Workflow file for this run

name: examples-simulation
on:
- push
- pull_request
env:
FOUNDRY_PROFILE: ci
jobs:
check:
strategy:
fail-fast: true
env:
working-directory: ./examples
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
match-workspace: "@rhinestone/modulekit-examples"

Check failure on line 25 in .github/workflows/simulation.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/simulation.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
match-workspace: "@rhinestone/modulekit-examples"
- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
with:
match-workspace: "@rhinestone/modulekit-examples"
- name: Run Forge tests
run: |
SIMULATE=true forge test -vvv
id: test
with:
match-workspace: "@rhinestone/modulekit-examples"