ruff #131
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: Test & Lint | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
# Python & dependency installation | |
- uses: actions/checkout@v2 | |
- name: setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install Poetry | |
uses: snok/[email protected] | |
# - name: cache Poetry virtualenv | |
# uses: actions/cache@v2 | |
# id: cache | |
# with: | |
# path: ~/.virtualenvs/ | |
# key: poetry-${{ hashFiles('**/poetry.lock') }} | |
# restore-keys: | | |
# poetry-${{ hashFiles('**/poetry.lock') }} | |
- name: set poetry config path | |
run: poetry config virtualenvs.path ~/.virtualenvs | |
- name: install dependencies | |
run: poetry install | |
- name: lint with mypy | |
run: poetry run mypy src | |
- name: lint with ruff | |
run: poetry run ruff src | |
- name: pytest | |
run: poetry run pytest |