forked from seL4/ci-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (57 loc) · 1.71 KB
/
push.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
#
# SPDX-License-Identifier: BSD-2-Clause
# Actions to run on Push and Pull Request
name: CI
on:
push:
branches:
- master
pull_request:
workflow_call:
jobs:
check:
name: License Check
runs-on: ubuntu-latest
steps:
- uses: seL4/ci-actions/license-check@master
links:
name: Links
runs-on: ubuntu-latest
steps:
- uses: seL4/ci-actions/link-check@master
with:
exclude: '/node_modules/'
mypy:
name: MyPy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install mypy
run: pip3 install mypy
- name: Run mypy
#run: mypy --explicit-package-bases ./
run: |
mypy seL4-platforms
mypy seL4-platforms camkes-hw
mypy seL4-platforms camkes-test
mypy seL4-platforms camkes-vm
mypy seL4-platforms camkes-vm-hw
mypy seL4-platforms cparser-run
mypy seL4-platforms dashboard
mypy seL4-platforms l4v-deploy
mypy seL4-platforms march-of-platform
mypy seL4-platforms rump-hello
mypy seL4-platforms rump-hello-hw
mypy seL4-platforms sel4bench
mypy seL4-platforms sel4bench-hw
mypy seL4-platforms sel4bench-web
mypy seL4-platforms sel4test-hw
mypy seL4-platforms sel4test-hw-matrix
mypy seL4-platforms sel4test-hw-run
mypy seL4-platforms sel4test-sim
mypy seL4-platforms thylint
mypy seL4-platforms trigger
mypy seL4-platforms tutorials
mypy seL4-platforms webserver
mypy seL4-platforms webserver-hw