misc!: Added Python 3.13 support and removed Python 3.8 support #8
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: "Python Lint" | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: "Lint" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout the repository" | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: "Set up Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.13" | |
- name: "Install Python dependencies" | |
run: | | |
pip install setuptools nox | |
- name: "Lint with flake8 and Black" | |
run: | | |
python3 -m nox --session lint |