This repository was archived by the owner on Mar 11, 2025. It is now read-only.
Add end of support notice to README #569
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Lint" | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Ruff Check | |
uses: chartboost/ruff-action@v1 | |
- name: Ruff Format | |
uses: chartboost/ruff-action@v1 | |
with: | |
args: "format --check" |