Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Add __init__.py files #4

Add __init__.py files

Add __init__.py files #4

Workflow file for this run

name: "Lint"
on: ["push"]
jobs:
lint:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: "actions/checkout@v4"
- name: "Set up Python ${{matrix.python-version}}"
uses: "actions/setup-python@v3"
with:
python-version: "${{matrix.python-version}}"
- name: "Install Ruff"
run: |
pipx install ruff
- name: "Analyze the code with Ruff"
run: "ruff ."