Skip to content

Commit

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

on: [push, pull_request]

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

- name: mypy
run: docker compose run backend mypy .

0 comments on commit 304bd7e

Please sign in to comment.