Skip to content

Commit

Permalink
Merge b040bc8 into 7e28579
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsenko committed Jan 10, 2022
2 parents 7e28579 + b040bc8 commit 73a7357
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/realm-dart-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ jobs:
--packages .packages \
--report-on lib
- name: Publish Coverage
id: publish-coverage
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: generator

- name: Output Coveralls response
run: echo ${{ steps.publish-coverage.outputs.coveralls-api-result }}

- name: Run generator tests
run: |
pushd generator
Expand All @@ -71,3 +81,15 @@ jobs:
--packages .packages \
--report-on lib
popd
- name: Publish Generator Coverage
id: publish-generator-coverage
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: realm_generator
path-to-lcov: ./generator/coverage/lcov.info

- name: Output Coveralls response
run: echo ${{ steps.publish-generator-coverage.outputs.coveralls-api-result }}

0 comments on commit 73a7357

Please sign in to comment.