-
Notifications
You must be signed in to change notification settings - Fork 20
41 lines (31 loc) · 916 Bytes
/
mypy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Run Mypy
on:
workflow_dispatch:
push:
paths:
- .github/workflows/mypy.yml
- .github/actions/install-linien/**
- linien-common/**
- linien-client/**
- linien-gui/**
- linien-server/**
permissions:
contents: read
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Install Linien
uses: ./.github/actions/install-linien
- name: Install additional dependencies
run: pip install mypy types-appdirs pyqt5-stubs types-requests
- name: mypy for linien-common
run: mypy linien-common/linien_common
- name: mypy for linien-server
run: mypy linien-server/linien_server
- name: mypy for linien-client
run: mypy linien-client/linien_client
- name: mypy for linien-gui
run: mypy linien-gui/linien_gui