Skip to content

Merge pull request #40 from smartcontractkit/zp-gh-action #3

Merge pull request #40 from smartcontractkit/zp-gh-action

Merge pull request #40 from smartcontractkit/zp-gh-action #3

Workflow file for this run

name: Run Tests On PR
on:
# Run tests for pull requests to the main or develop branch
pull_request:
branches: [main, develop]
# Run tests on pushes to all branches
push:
branches: ["**"]
workflow_dispatch:
jobs:
test:
name: run forge test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run tests
run: forge test -vvv