From 9181cd6662a69c22f7ea213bca7747b82b6e0c0e Mon Sep 17 00:00:00 2001 From: Siddhartha Date: Tue, 8 Oct 2024 20:13:45 -0700 Subject: [PATCH] fix workflow syntax again --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 53a4ee0..8633fb7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,10 +45,10 @@ jobs: architecture: x64 - name: Install dependencies run: make build-for-test - - name: Report coverage - run: > - coverage run --source $(PACKAGE-NAME) -m pytest; - coveralls + - name: Build coverage report + run: coverage run --source oldabe -m pytest + - name: Report coverage to Coveralls + run: coveralls lint: runs-on: ubuntu-latest name: Lint the package