Skip to content

misc!: Added Python 3.13 support and removed Python 3.8 support #32

misc!: Added Python 3.13 support and removed Python 3.8 support

misc!: Added Python 3.13 support and removed Python 3.8 support #32

Workflow file for this run

name: Lint and Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: "Pull the repository"
uses: actions/checkout@v4
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: "Install Nox"
run: |
pip3 install setuptools
pip3 install nox
- name: "Lint with Flake8 and Black"
run: |
python3 -m nox --session lint