Skip to content

Commit

Permalink
Mypy action.
Browse files Browse the repository at this point in the history
  • Loading branch information
iwatkot committed Jun 20, 2024
1 parent 2d1603c commit b96be43
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/check_with_mypy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Check with mypy

on:
push:
branches:
- main

jobs:
type-check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
- name: Run mypy
run: mypy py3xui

0 comments on commit b96be43

Please sign in to comment.