Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
files: ./coverage.xml
flags: unittests
env_vars: RUNNER_OS,PYTHON_VERSION
name: codecov-umbrella
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
files: ./coverage.xml
flags: unittests
env_vars: RUNNER_OS,PYTHON_VERSION
name: codecov-umbrella
Expand Down Expand Up @@ -204,11 +204,11 @@ jobs:
- name: Upload code coverage
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
files: ./coverage.xml
flags: unittests
env_vars: RUNNER_OS
name: codecov-windows
fail_ci_if_error: false
fail_ci_if_error: true

- name: Teardown services
if: always()
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# This step is only necessary for testing purposes and for TestPyPI
- name: Fix up version string for TestPyPI
if: ${{ !startsWith(github.ref, 'refs/tags') }} || github.event_name == 'workflow_dispatch'
if: ${{ !startsWith(github.ref, 'refs/tags') || github.event_name == 'workflow_dispatch' }}
run: |
# Change setuptools-scm local_scheme to "no-local-version" so the
# local part of the version isn't included, making the version string
Expand Down Expand Up @@ -72,9 +72,9 @@ jobs:
uses: pypa/gh-action-pypi-publish@v1.13.0
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
repository-url: https://test.pypi.org/legacy/
verbose: true
skip_existing: true
skip-existing: true
- name: Check pypi packages
run: |
sleep 3
Expand Down
69 changes: 0 additions & 69 deletions .github/workflows/windows-utils.yaml

This file was deleted.

83 changes: 0 additions & 83 deletions .github/workflows/windows.yaml

This file was deleted.

Loading