Skip to content

Commit

Permalink
Add Python 3.10 to GitHub Actions workflow
Browse files Browse the repository at this point in the history
Python versions must now be quoted in YAML. `3.10` (without quotes) is
interpreted as a float and becomes `3.1`. `"3.10"` will be used instead.
  • Loading branch information
br3ndonland committed Oct 23, 2021
1 parent b9d417b commit 1a2e46b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: ["3.8", "3.9", "3.10"]
env:
CODECOV_UPLOAD: true
PIPX_VERSION: "0.16.4"
Expand Down Expand Up @@ -59,13 +59,13 @@ jobs:
run: poetry run pytest --cov-report=xml
- name: Upload test coverage report to Codecov
uses: codecov/codecov-action@v2
if: env.CODECOV_UPLOAD == 'true' && matrix.python-version == 3.9
if: env.CODECOV_UPLOAD == 'true' && matrix.python-version == '3.10'
with:
fail_ci_if_error: true
flags: unit
- name: Build Python package with latest Python version and publish to PyPI
- name: Build Python package with latest stable Python version and publish to PyPI
if: >
env.PYPI_PUBLISH == 'true' &&
matrix.python-version == 3.9 &&
matrix.python-version == '3.10' &&
startsWith(github.ref, 'refs/tags/')
run: poetry publish --build -u __token__ -p ${{ secrets.PYPI_TOKEN }}

0 comments on commit 1a2e46b

Please sign in to comment.