Skip to content

Run tests with Python 3.12 (#37) #55

Run tests with Python 3.12 (#37)

Run tests with Python 3.12 (#37) #55

Workflow file for this run

name: Python
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Checkout Git repository
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "requirements*.txt"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools flake8
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Lint with flake8
run: flake8 . --ignore E501 --exclude .venv
- name: Check types with mypy
run: mypy .
- name: Install Python package
run: python setup.py install
- name: Test with pytest
run: pytest