Skip to content

Commit

Permalink
Adds new github action for linter and formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
DrPaulSharp committed Jun 26, 2024
1 parent bf30c3c commit f2d69da
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check_linting_and_format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Ruff

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
- uses: chartboost/ruff-action@v1
with:
args: 'format --check'

0 comments on commit f2d69da

Please sign in to comment.