Skip to content

Changelog update

Changelog update #140

Workflow file for this run

name: Python code checks
on:
workflow_call:
push:
branches: [ main ]
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ".[dev]"
- name: Run pre-commit checks
uses: pre-commit/[email protected]