Skip to content

Commit

Permalink
Add CI Action for Foundry
Browse files Browse the repository at this point in the history
  • Loading branch information
riordant committed Oct 9, 2024
1 parent 92f2337 commit f382bcf
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
57 changes: 57 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: test

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

workflow_dispatch:

env:
FOUNDRY_PROFILE: ci

jobs:
check:
strategy:
fail-fast: true

name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Install Foundry
uses: foundry-rs/[email protected]

- name: Run Forge build
run: |
forge build --skip test --sizes
forge build
id: build

- name: Run Forge unit tests
run: |
forge test --mc BigNumbersTest -vvv
id: test

# Node.js setup and differential testing steps
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '14.17'

- name: Install Node.js dependencies
working-directory: ./test/differential/scripts
run: npm install

- name: Compile Node.js project
working-directory: ./test/differential/scripts
run: npm run compile

- name: Run differential Forge test
run: |
forge test -vvv --ffi --mc BigNumbersDifferentialTest
id: differential-test
3 changes: 2 additions & 1 deletion test/differential/scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"bn.js": "^5.2.1",
"ethereumjs-util": "^7.1.4",
"rlp": "^3.0.0",
"typescript": "^4.8.4"
"typescript": "^4.8.4",
"ethers": "^5.7.1"
},
"scripts": {
"compile": "npx tsc --esModuleInterop ./*.ts",
Expand Down

0 comments on commit f382bcf

Please sign in to comment.