Skip to content

Documentation and naming fixes #380

Documentation and naming fixes

Documentation and naming fixes #380

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: py${{ matrix.python-version }} @ ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
# versions updated according to
# https://devguide.python.org/versions/
# on 2025-01-15
- python-version: "3.9"
os: "ubuntu-22.04"
- python-version: "3.10"
os: "ubuntu-22.04"
- python-version: "3.11"
os: "ubuntu-22.04"
- python-version: "3.12"
os: "ubuntu-22.04"
- python-version: "3.13"
os: "ubuntu-22.04"
runs-on: ${{ matrix.os }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python-version }}
cancel-in-progress: true
steps:
- uses: szenius/[email protected]
with:
timezoneLinux: "Europe/Berlin"
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: |
pip install --upgrade pip
- name: Install packages
run: |
pip install .
- name: Pre-commit
uses: pre-commit/[email protected]