mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
17 lines
304 B
YAML
17 lines
304 B
YAML
name: mypy
|
|
description: Type checks Python code.
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: mypy game
|
|
shell: powershell
|
|
run: |
|
|
./venv/scripts/activate
|
|
mypy game
|
|
|
|
- name: mypy tests
|
|
shell: powershell
|
|
run: |
|
|
./venv/scripts/activate
|
|
mypy tests
|