Skip to content

Add support for Python 3.13 and drop EOL 3.8 #53

Add support for Python 3.13 and drop EOL 3.8

Add support for Python 3.13 and drop EOL 3.8 #53

Workflow file for this run

# Run the linting suite for the pyroma package
# Based on https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Lint package
on: [push, pull_request, workflow_dispatch]
env:
FORCE_COLOR: 1
jobs:
build:
name: Run pre-commit
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Run pre-commit hooks
uses: pre-commit/[email protected]