v3.0.4 -> v3.0.5 (#50) #251
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
release: | |
types: | |
- published | |
env: | |
MINIMUM_PYTHON_VERSION: '3.8' | |
jobs: | |
precommit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Python ${{ env.MINIMUM_PYTHON_VERSION }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.MINIMUM_PYTHON_VERSION }} | |
- uses: actions/checkout@v3 | |
- name: Install pre-commit | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install pre-commit virtualenv!=20.0.6 | |
pre-commit install | |
- name: Run static code inspections | |
run: pre-commit run --all-files | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox tox-gh-actions poetry | |
- name: Test with tox | |
run: | | |
tox | |
deploy: | |
if: github.event_name == 'release' | |
needs: [precommit, build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Python ${{ env.MINIMUM_PYTHON_VERSION }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.MINIMUM_PYTHON_VERSION }} | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install poetry | |
- name: Upload to pypi | |
env: | |
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
poetry config http-basic.pypi "__token__" "${POETRY_PYPI_TOKEN_PYPI}" | |
poetry publish --build |