From c3fefc78faec6ed988645e267b59f6944056e615 Mon Sep 17 00:00:00 2001 From: Ali Behjati Date: Thu, 24 Nov 2022 17:32:40 +0100 Subject: [PATCH] [eth] Add CI for Foundry tests (#394) * [eth]: Add eth contract ci (foundry) * Update the ci * Fix ci * Add paths --- .github/workflows/ethereum-contract.yml | 44 +++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/ethereum-contract.yml diff --git a/.github/workflows/ethereum-contract.yml b/.github/workflows/ethereum-contract.yml new file mode 100644 index 00000000..ec54d302 --- /dev/null +++ b/.github/workflows/ethereum-contract.yml @@ -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