Skip to content

Commit

Permalink
Trigger pipeline after git tag push
Browse files Browse the repository at this point in the history
  • Loading branch information
Monarda committed Sep 13, 2024
1 parent 2cc98bb commit 5d0121b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ jobs:
PYTHON_PATH=$(which python)
sudo $PYTHON_PATH -m coverage run --source=. -m unittest discover tests/
- name: Gather coverage statistics
if: ${{ always() }}
run: |
coverage report -m
coverage xml
if: ${{ always() }}
- name: Upload pytest test results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: coverage-results-${{ matrix.os }}-${{ matrix.python-version }}
path: coverage.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}

build:
name: Build distribution 📦
Expand Down

0 comments on commit 5d0121b

Please sign in to comment.