From dda21ff0d50bbe01acf7305946124e5d13d1bb3b Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Tue, 14 May 2024 02:26:36 +0300 Subject: [PATCH] CI: Put mypy into a separate workflow and add some useful arguments --- .github/workflows/functional_test.yml | 5 --- .../workflows/functional_test_no-coverage.yml | 5 --- .github/workflows/static_typing_test.yml | 33 +++++++++++++++++++ 3 files changed, 33 insertions(+), 10 deletions(-) create mode 100644 .github/workflows/static_typing_test.yml diff --git a/.github/workflows/functional_test.yml b/.github/workflows/functional_test.yml index 8a2711f..e197bac 100644 --- a/.github/workflows/functional_test.yml +++ b/.github/workflows/functional_test.yml @@ -51,11 +51,6 @@ jobs: - name: Get source code for collecting coverage uses: actions/checkout@v4 - - name: Check static typing with mypy - run: | - pip install mypy - mypy kernel_hardening_checker/ - - name: Run the functional tests and collect the coverage run: | pip install coverage diff --git a/.github/workflows/functional_test_no-coverage.yml b/.github/workflows/functional_test_no-coverage.yml index 7d692ee..3d02c5a 100644 --- a/.github/workflows/functional_test_no-coverage.yml +++ b/.github/workflows/functional_test_no-coverage.yml @@ -51,11 +51,6 @@ jobs: - name: Get source code uses: actions/checkout@v4 - - name: Check static typing with mypy - run: | - pip install mypy - mypy kernel_hardening_checker/ - - name: Run the functional tests run: | pip install coverage diff --git a/.github/workflows/static_typing_test.yml b/.github/workflows/static_typing_test.yml new file mode 100644 index 0000000..92761f7 --- /dev/null +++ b/.github/workflows/static_typing_test.yml @@ -0,0 +1,33 @@ +name: static typing test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + static_typing_test: + + 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 -- 2.31.1