Skip to content

Commit

Permalink
Create ruff.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelpoi authored Jan 3, 2025
1 parent 38a24af commit a07b86f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Ruff Lint Check

on:
push:
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup up Python
uses: actions/setup-python@v5

- name: Install ruff
run: pip install ruff

- name: Lint
run: ruff check .

0 comments on commit a07b86f

Please sign in to comment.