WIP Refactoring of open
and close
commands
#27
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.8.3" | |
- 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 }} | |
- name: Check formatting with black | |
run: poetry run black --check . | |
- name: Check import ordering with ruff | |
run: poetry run ruff check --output-format github --select I . | |
- name: Check static typing with mypy | |
run: poetry run mypy . | |
- name: Lint with ruff | |
run: poetry run ruff check --output-format github . | |
- name: Test with pytest | |
run: poetry run pytest --junitxml=junit/test-results.xml --cov-report=xml --cov-report=html |