Skip to content

Commit

Permalink
test: GA running ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
castelao committed Feb 21, 2025
1 parent d2b3734 commit 2bbfdc4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Lint Code Base

on:
push:
branches-ignore:
- 'gh-pages'
pull_request:
branches: [main]

jobs:
lint:
name: Lint Code Base with Ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: astral-sh/ruff-action@v3
with:
version: 0.7.4
args: check
src: "./fied"

# - uses: astral-sh/ruff-action@v3
# with:
# version: 0.7.4
# args: format --check
# src: "./fied"

0 comments on commit 2bbfdc4

Please sign in to comment.