37 lines
927 B
YAML
37 lines
927 B
YAML
|
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.7", "3.8", "3.9", "3.10", "3.11"]
|
||
|
|
||
|
steps:
|
||
|
# Python & dependency installation
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: setup Python ${{ matrix.python-version }}
|
||
|
uses: actions/setup-python@v2
|
||
|
with:
|
||
|
python-version: ${{ matrix.python-version }}
|
||
|
- name: install Poetry
|
||
|
uses: snok/install-poetry@v1.2.1
|
||
|
- 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 flake8
|
||
|
run: poetry run flake8 --show-source --statistics --ignore=E203,E501,W503 src
|
||
|
- name: pytest
|
||
|
run: poetry run pytest
|