Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.

TEST PR Add coveralls action #356

Draft
wants to merge 13 commits into
base: master
Choose a base branch
from
Draft
22 changes: 22 additions & 0 deletions .github/workflows/build-test-lint-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,25 @@ jobs:

- name: Test
run: yarn test


- name: Test Coverage
run: yarn test-coverage
continue-on-error: true

- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.test_number }}
parallel: true

finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true