Skip to content

Commit

Permalink
chore: upload coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
leeqvip committed Dec 25, 2020
1 parent 482826a commit abc7d83
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,25 @@ jobs:
- name: Run test suite
run: ./vendor/bin/phpunit

- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GH_TOKEN }}
flag-name: ${{ runner.os }}-${{ matrix.php }}-Laravel${{ matrix.laravel }}
parallel: true
coveralls:
needs: [ test ]
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GH_TOKEN }}
parallel-finished: true

semantic-release:
runs-on: ubuntu-latest
needs: [ test ]
needs: [ test, coveralls ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down

0 comments on commit abc7d83

Please sign in to comment.