Files
thisORthat/.github/workflows/app-actions.yml
T
IgorVolochay 90c99c3f85 Update workflows
Change that CI will only run if .py files are changed or added
2025-02-15 16:55:58 +03:00

33 lines
580 B
YAML

name: app-actions
on:
push:
paths:
- '**.py'
branches:
- main
- app
pull_request:
branches:
- main
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
architecture: x64
- name: Install dependencies
run: |
pip install mypy
pip install -r requirements.txt
- name: Run mypy
run: mypy --ignore-missing-imports ./app