Skip to content

Commit

Permalink
Add code quality github check
Browse files Browse the repository at this point in the history
  • Loading branch information
gizmo385 committed Jun 19, 2024
1 parent 559e686 commit 42841d9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/code-checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run code quality checks

on:
push:
branches:
- main
pull_request:
branches:
- main

permissions:
contents: read

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: yezz123/setup-uv@v4
- run: uv run --extra=checks pyright
- run: uv run --extra=checks ruff check

0 comments on commit 42841d9

Please sign in to comment.