Skip to content

fix: support Python 3.7 again #15

fix: support Python 3.7 again

fix: support Python 3.7 again #15

Workflow file for this run

---
name: Code Formatting
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
workflow_dispatch:
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install ruff based off pyproject.toml
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1
with:
args: "format --check --diff" # only check formatting here
version-file: "pyproject.toml"