Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wbenoit26 committed Jan 18, 2025
1 parent 3a34991 commit 53f4c5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Post coverage comment

on:
workflow_run:
workflows: ["CI"]
workflows: ["unit-tests"]
types:
types:

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:
name: run tests
env:
pyver: ${{ matrix.python-version }}
COVERAGE_FILE: ".coverage.${{ matrix.python_version }}"
COVERAGE_FILE: ".coverage.${{ matrix.python-version }}"
run: tox -e py${pyver//./}

- name: Store coverage file
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.python_version }}
path: .coverage.${{ matrix.python_version }}
name: coverage-${{ matrix.python-version }}
path: .coverage.${{ matrix.python-version }}
include-hidden-files: true

coverage:
Expand Down

0 comments on commit 53f4c5a

Please sign in to comment.