Skip to content

Hotfix

Hotfix #20

Workflow file for this run

# This file was generated from bswck/skeleton@61eeffb.
# Instead of changing this particular file, you might want to alter the template:
# https://github.com/bswck/skeleton/tree/61eeffb/project/.github/workflows/lint.yml.jinja
name: "Lint"
on: ["push"]
jobs:
lint:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- name: "Set up Python 3.10"
uses: "actions/setup-python@v4"
with:
python-version: "3.10"
- name: "Install Ruff"
run: |
pip install ruff
- name: "Analyze the code with Ruff"
run: "ruff ."