[eth] Add CI for Foundry tests (#394)

* [eth]: Add eth contract ci (foundry)

* Update the ci

* Fix ci

* Add paths
This commit is contained in:
Ali Behjati 2022-11-24 17:32:40 +01:00 committed by GitHub
parent d6e25d9209
commit c3fefc78fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 44 additions and 0 deletions

44
.github/workflows/ethereum-contract.yml vendored Normal file
View File

@ -0,0 +1,44 @@
on:
pull_request:
paths:
- ethereum/**
- third_party/pyth/xc-governance-sdk-js/**
push:
branches:
- main
paths:
- ethereum/**
- third_party/pyth/xc-governance-sdk-js/**
name: Ethereum Contract
jobs:
check:
name: Foundry tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ethereum/
steps:
- uses: actions/checkout@v3
- name: Install XC-governance sdk dependencies
run: npm ci
working-directory: third_party/pyth/xc-governance-sdk-js
- name: Install contract npm dependencies
run: npm ci
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install Forge dependencies
run: npm run install-forge-deps
- name: Run tests
run: forge test -vvv
- name: Run snapshot
run: NO_COLOR=1 forge snapshot --match-contract GasBenchmark >> $GITHUB_STEP_SUMMARY