forked from a13xp0p0v/kernel-hardening-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (30 loc) · 896 Bytes
/
static_analysis.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
name: static analysis
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
static_analysis:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: false
matrix:
python-version: ['3.12']
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Get the source code
uses: actions/checkout@v4
- name: Check static typing with mypy
run: |
pip install mypy
mypy kernel_hardening_checker/ --show-error-context --pretty --no-incremental --check-untyped-defs --disallow-untyped-defs --strict-equality
- name: Check code with pylint
run: |
pip install pylint
pip install setuptools
pylint --recursive=y kernel_hardening_checker setup.py