X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=.github%2Fworkflows%2Ffunctional_test.yml;h=8a2711f3e13ccabffd7db805c01ed773ed6a9413;hb=a88e0633185026fbd02184061a6f12b004da7fa0;hp=398f0ccad48e81f66864b4701b66ca309baafff6;hpb=839b34768f45d382d94651060b992e34d47737ac;p=kconfig-hardened-check.git diff --git a/.github/workflows/functional_test.yml b/.github/workflows/functional_test.yml index 398f0cc..8a2711f 100644 --- a/.github/workflows/functional_test.yml +++ b/.github/workflows/functional_test.yml @@ -3,12 +3,12 @@ name: functional test on: push: branches: [ master ] - pull_request: - branches: [ master ] jobs: functional_test: + if: github.repository == 'a13xp0p0v/kernel-hardening-checker' + runs-on: ubuntu-latest strategy: @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: # Current ubuntu-latest (Ubuntu 22.04) provides the following versions of Python: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: @@ -51,6 +51,11 @@ 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 @@ -61,7 +66,9 @@ jobs: coverage xml -i -o coverage.xml - name: Handle coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: ./coverage.xml flags: functional_test