Skip to content

Several bug fixes and improved documentation #30

Several bug fixes and improved documentation

Several bug fixes and improved documentation #30

Workflow file for this run

name: code-check
on:
push:
branches: ["main"]
tags: ["*"]
pull_request:
branches:
- "*"
- "!gh-pages"
jobs:
python-lint-ruff:
name: Python lint [ruff]
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install ruff
run: |
pip install ruff
- name: Lint
run: ruff .
- name: Format
run: ruff format . --check