Merge pull request #17 from SvenskaSpel/sort-imports-and-check-format… #121
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: Tests | |
on: [push, pull_request] | |
jobs: | |
tests: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { name: "3.12", python: "3.12", os: ubuntu-latest, tox: py312 } | |
- { name: "3.11", python: "3.11", os: ubuntu-latest, tox: py311 } | |
- { name: "3.10", python: "3.10", os: ubuntu-latest, tox: py310 } | |
- { name: "3.9", python: "3.9", os: ubuntu-latest, tox: py39 } | |
- { name: "3.8", python: "3.8", os: ubuntu-latest, tox: py38 } | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Update pip | |
run: | | |
pip install -U wheel | |
pip install -U setuptools | |
python -m pip install -U pip | |
- name: Get pip cache dir | |
id: pip-cache | |
run: echo "::set-output name=dir::$(pip cache dir)" | |
- uses: actions/cache@v2 | |
with: | |
path: ${{ steps.pip-cache.outputs.dir }} | |
key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }} | |
- name: set full Python version in PY env var | |
# See https://pre-commit.com/#github-actions-example | |
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV | |
- run: pip install tox codecov | |
- run: tox -e ${{ matrix.tox }} | |
publish: | |
name: PyPI - Publish if this is a tagged commit | |
needs: tests | |
if: startsWith(github.event.ref, 'refs/tags') && github.repository_owner == 'SvenskaSpel' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.x" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel | |
- name: Build | |
run: | | |
python setup.py sdist bdist_wheel | |
- name: Publish to PyPI (Test) | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |