diff --git a/.github/workflows/forge.yml b/.github/workflows/forge.yml index 3780643..75f3a98 100644 --- a/.github/workflows/forge.yml +++ b/.github/workflows/forge.yml @@ -5,6 +5,7 @@ on: push: paths: - "**.sol" + - "**.toml" pull_request: types: [opened, reopened, synchronize, ready_for_review] # On-demand @@ -38,11 +39,11 @@ jobs: strategy: fail-fast: false matrix: - os: ['ubuntu-22.04'] + os: ['macos-latest', 'ubuntu-22.04'] steps: - - uses: actions/checkout@v3 - - uses: extractions/setup-just@v1 + - uses: actions/checkout@v4 + - uses: extractions/setup-just@v2 - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 @@ -58,7 +59,7 @@ jobs: run: forge install - name: Run Forge build - run: just dumpbuild + run: just build id: build - name: Run Tests @@ -66,7 +67,7 @@ jobs: run: just test - name: Run Slither - uses: crytic/slither-action@v0.3.0 + uses: crytic/slither-action@v0.4.0 id: slither with: fail-on: all