Skip to content

Commit

Permalink
feat: run tests with github action
Browse files Browse the repository at this point in the history
  • Loading branch information
jusikXL committed Nov 6, 2024
1 parent 33f7c0c commit b2c47be
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: [push]

name: test

jobs:
check:
name: Foundry project
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: Install Dependencies
run: npm install

- name: Run tests
run: forge test -vvv

0 comments on commit b2c47be

Please sign in to comment.