Skip to content

Commit

Permalink
init github actions lint
Browse files Browse the repository at this point in the history
  • Loading branch information
staciax committed Oct 27, 2024
1 parent 1cbb0fc commit 3612e20
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: lint

on:
push:
pull_request:
types:
- opened
- reopened
- synchronize

jobs:
lint-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.x"
enable-cache: true
- run: uv run make lint

0 comments on commit 3612e20

Please sign in to comment.