From b37583af6fb681e21afa2ac525cbb5ca8bdc81d1 Mon Sep 17 00:00:00 2001 From: Liuhaai <haixiang@iotex.io> Date: Wed, 9 Oct 2024 13:44:09 -0700 Subject: [PATCH] commment out contract test --- .github/workflows/check.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index cacab426..c28f3f90 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -2,9 +2,9 @@ name: pr_check on: push: - branches: [ "develop", "pull-request" ] + branches: [ "develop"] pull_request: - branches: [ "develop", "pull-request" ] + branches: [ "develop"] jobs: build: @@ -23,21 +23,21 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '21.x' + # - name: Setup Node.js + # uses: actions/setup-node@v4 + # with: + # node-version: '21.x' - - name: Run Unit tests for smart-contract - run: make contract_test + # - name: Run tests for smart-contract + # run: make contract_test - name: Setup Go uses: actions/setup-go@v3 with: go-version: 1.22 - - name: Run Unit tests. - run: make unit_test + - name: Run unit tests. + run: make test - name: Upload Coverage report to CodeCov uses: codecov/codecov-action@v1.0.0