Skip to content

Commit

Permalink
coveralls provide an updated v1
Browse files Browse the repository at this point in the history
Even though their docs mysteriously say to use `@master` it seems stupid to do so.
  • Loading branch information
mxcl committed Mar 1, 2023
1 parent 447259d commit abd7013
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,19 @@ jobs:
- uses: denoland/setup-deno@v1 # using ourself to install deno could compromise the tests
- run: deno task test --coverage=cov_profile
- run: deno coverage cov_profile --lcov --output=cov_profile.lcov
- name: coveralls
uses: coverallsapp/github-action@master
- uses: coverallsapp/github-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: cov_profile.lcov
parallel: true
flag-name: ${{ matrix.os }}

finish-tests:
upload-coverage:
needs: tests
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
- uses: coverallsapp/github-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ the creator of [`brew`].
 


# tea/cli 0.24.6
# tea/cli 0.24.7

```sh
$ node --eval 'console.log("Hello World!")'
Expand Down

0 comments on commit abd7013

Please sign in to comment.