Add build settings #57
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: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "development" ] | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: "lint" | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
poetry-version: [1.3.1] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: "Setup Python, Poetry and Dependencies" | |
uses: packetcoders/action-setup-cache-python-poetry@main | |
with: | |
python-version: ${{matrix.python-version}} | |
poetry-version: ${{matrix.poetry-version}} | |
- run: poetry run black . --check | |
- run: poetry run autoflake -r . --expand-star-imports --remove-unused-variables --remove-all-unused-imports | |
- run: poetry run ruff format . --check | |
- run: poetry run ruff check . | |
- run: poetry run mypy . | |
test: | |
name: "test" | |
needs: "lint" | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
poetry-version: [1.3.1] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: "Setup Python, Poetry and Dependencies" | |
uses: packetcoders/action-setup-cache-python-poetry@main | |
with: | |
python-version: ${{matrix.python-version}} | |
poetry-version: ${{matrix.poetry-version}} | |
- name: Test | |
run: poetry run pytest tests -vvv --tb=short |