Skip to content

Add python 3.13 support #161

Add python 3.13 support

Add python 3.13 support #161

Workflow file for this run

name: linting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
pip install -e .[lint]
- name: Lint
run: |
ruff check .
ruff format --check --diff .
mypy --install-types --non-interactive src/ixbrlparse tests