19 lines
321 B
YAML
19 lines
321 B
YAML
name: Type Check
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
type-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: ./.gitea/workflows/setup-python-uv-dependencies.yml
|
|
with:
|
|
python-version: ${{ vars.PYTHON_VERSION }}
|
|
|
|
- name: Run mypy
|
|
run: mypy monitor_utils
|