Skip to content

Fix: Support Python 3.12 #11

Fix: Support Python 3.12

Fix: Support Python 3.12 #11

Workflow file for this run

name: Run tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python ${% raw %}{{ matrix.python-version }}{% endraw %}
uses: actions/setup-python@v2
with:
python-version: ${% raw %}{{ matrix.python-version }}{% endraw %}
cache: "pip"
cache-dependency-path: requirements_dev.txt
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools
- name: Install dependencies
run: pip install -r requirements_dev.txt
- name: Static code analysis
run: make lint
- name: Python unit tests
run: make test