Skip to content

Commit

Permalink
chore(telegrambot): add github action for mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
emptybutton committed Jul 2, 2024
1 parent 304bd7e commit e34f6e9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/lint-telegram-bot-types.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Lint telegram bot 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 telegrambot mypy .

0 comments on commit e34f6e9

Please sign in to comment.