Skip to content

Tbrent review

Tbrent review #17

Workflow file for this run

name: "Testing Suite"
env:
FOUNDRY_PROFILE: "ci"
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
jobs:
test:
name: "Foundry Tests"
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Foundry
uses: foundry-rs/foundry-toolchain@v1
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "yarn"
- name: Install Dependencies
run: "yarn install"
- name: Run Tests
run: "forge test"