Skip to content

Commit

Permalink
Add GHA workflow for ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
real-or-random committed Mar 6, 2024
1 parent 915ebd4 commit 3088785
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: ruff lint

on:
push:
branches:
- 'master'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: jpetrucciani/ruff-check@0.1.0
with:
path: reference

0 comments on commit 3088785

Please sign in to comment.