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

GitHub Actions: Use ruff format instead of psf/black #39

GitHub Actions: Use ruff format instead of psf/black

GitHub Actions: Use ruff format instead of psf/black #39

Workflow file for this run

name: CheckPython
on: [push, pull_request]
jobs:
clean-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
with:
args: 'check'
- uses: chartboost/ruff-action@v1
with:
args: 'format'
- uses: jakebailey/pyright-action@v2