Skip to content

Commit

Permalink
split commands into multiple runs in the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
countvajhula committed Oct 9, 2024
1 parent 07b004c commit 4f32ea6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,10 @@ jobs:
- name: Install dependencies
run: make build-for-test
- name: Report coverage
run:
coverage run --source oldabe -m pytest
coverage report -m
coverage html
open coverage_html_report/index.html
run: coverage run --source oldabe -m pytest
run: coverage report -m
run: coverage html
run: open coverage_html_report/index.html
lint:
runs-on: ubuntu-latest
name: Lint the package
Expand Down

0 comments on commit 4f32ea6

Please sign in to comment.