ci: Aufnahme von Python 3.12 in Githubs Testmatrix #47
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: Python package | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
dependency-extras: ["", "-E all"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install poetry | |
run: pipx install "poetry==1.7.1" | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "poetry" | |
- name: Install dependencies | |
run: | | |
poetry install ${{ matrix.dependency-extras }} | |
sudo apt install restic | |
- name: Check formatting with black | |
run: | | |
poetry run black --check . | |
- name: Check import ordering with ruff | |
run: | | |
poetry run ruff check --format=github --select I . | |
- name: Check static typing with mypy | |
run: poetry run mypy . | |
- name: Lint with ruff | |
run: | | |
poetry run ruff check --format=github . | |
- name: Test with pytest | |
run: | | |
poetry run pytest --junitxml=junit/test-results.xml --cov-report=xml --cov-report=html |