Skip to content

Commit

Permalink
chore: Upload coverage results
Browse files Browse the repository at this point in the history
  • Loading branch information
dshukertjr committed Jan 17, 2025
1 parent 3bc6134 commit 412d5fb
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/functions_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,9 @@ jobs:

- name: Update coverage
run: melos run update-coverage

- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info
6 changes: 6 additions & 0 deletions .github/workflows/gotrue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,9 @@ jobs:

- name: Update coverage
run: melos run update-coverage

- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info
6 changes: 6 additions & 0 deletions .github/workflows/postgrest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,9 @@ jobs:

- name: Update coverage
run: melos run update-coverage

- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info
6 changes: 6 additions & 0 deletions .github/workflows/realtime_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,9 @@ jobs:

- name: Update coverage
run: melos run update-coverage

- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info
6 changes: 6 additions & 0 deletions .github/workflows/storage_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,9 @@ jobs:

- name: Update coverage
run: melos run update-coverage

- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info
6 changes: 6 additions & 0 deletions .github/workflows/supabase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,9 @@ jobs:
dart pub global activate combine_coverage
melos run update-coverage
dart pub global run combine_coverage --repo-path="../../"
- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info
7 changes: 5 additions & 2 deletions .github/workflows/supabase_flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,8 @@ jobs:
cd example
flutter build web
- name: Update coverage
run: melos run update-coverage
- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info
6 changes: 6 additions & 0 deletions .github/workflows/yet_another_json_isolate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,9 @@ jobs:

- name: Update coverage
run: melos run update-coverage

- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info
3 changes: 0 additions & 3 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,3 @@ scripts:
# Format coverage
dart pub global run coverage:format_coverage --lcov --in="./coverage/test" --out="./coverage/lcov.info" --report-on="./lib"
# Combine coverage
dart pub global run combine_coverage --repo-path="../../"

0 comments on commit 412d5fb

Please sign in to comment.