Skip to content

Commit

Permalink
try and avoid the tyranny of depending on firefox versions to find lc…
Browse files Browse the repository at this point in the history
…ov.info
  • Loading branch information
fredkingham committed Dec 9, 2020
1 parent b694223 commit bb909af
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ jobs:
run: opal test --coverage
- name: flake8
run: flake8
- run: coveralls-lcov -v -n coverage/Firefox\ 82.0.0\ \(Ubuntu\ 0.0.0\)/lcov.info > coverage/coverage.json
- name: find lcov
run: find . -name "lcov.info"
- name: find in coverage
run: find coverage -name "lcov.info"
- run: ls coverage
- name: combine coveralls
run: find coverage -name "lcov.info" -exec coveralls-lcov -v -n {} \; > coverage/coverage.json
- run: coveralls --merge=coverage/coverage.json
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}"
Expand Down

0 comments on commit bb909af

Please sign in to comment.