Skip to content

Commit

Permalink
chore(backend): add github action for ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
emptybutton authored Jul 2, 2024
1 parent e34f6e9 commit 61041ff
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/lint-backend-style.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint backend style

on: [push, pull_request]

jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install Python
uses: actions/setup-python@v4
with:
python-version: 3.12

- name: install ruff
run: pip install ruff

- name: ruff
run: python -m ruff check ./backend

0 comments on commit 61041ff

Please sign in to comment.