Skip to content

Commit d5f3610

Browse files
authored
Merge pull request #83 from GIScience/81-fixci-fix-failing-pypy-37-pytest-run
2 parents bc475ea + 5ea82f7 commit d5f3610

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci-production.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.7", "pypy3.8", "pypy3.9" ]
17+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.8", "pypy3.9" ]
1818
poetry-version: [ "latest" ]
1919
os: [ ubuntu-20.04, macos-latest, windows-latest ]
2020
runs-on: ${{ matrix.os }}
@@ -31,6 +31,9 @@ jobs:
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333
cache: 'pip'
34+
- name: Update pip
35+
run: |
36+
python -m pip install --upgrade pip
3437
- name: Run Poetry action
3538
uses: abatilo/actions-poetry@v2
3639
with:
@@ -66,7 +69,7 @@ jobs:
6669
with:
6770
poetry-version: latest
6871
- name: Publish distribution 📦 with test.pypi.org
69-
if: startsWith(github.ref, 'refs/tags')
72+
if: startsWith(github.ref, 'refs/tags/v')
7073
run: |
7174
poetry config repositories.testpypi https://test.pypi.org/legacy/
7275
poetry config pypi-token.testpypi ${{ secrets.TEST_PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)