Skip to content

fix CI

fix CI #8

Workflow file for this run

---
name: CI
on: push
jobs:
run-linters:
runs-on: ubuntu-latest
container: python:3.12-alpine
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Run linter and formatter with ruff
run: |
pip install ruff
ruff format --check .
ruff check --output-format github .