From 4f32ea6fa5ba44c369e1bf9517d22bc964d6e545 Mon Sep 17 00:00:00 2001 From: Siddhartha Date: Tue, 8 Oct 2024 19:59:15 -0700 Subject: [PATCH] split commands into multiple `run`s in the workflow --- .github/workflows/test.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d110cd8..3aca8c0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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