CI: Add a unit-test without collecting coverage (tired of codecov failures)
[kconfig-hardened-check.git] / .github / workflows / engine_unit-test_no_coverage.yml
1 name: engine unit-test
2
3 on:
4   push:
5     branches: [ master ]
6   pull_request:
7     branches: [ master ]
8
9 jobs:
10   engine_unit-test:
11
12     runs-on: ubuntu-latest
13
14     strategy:
15       max-parallel: 1
16       fail-fast: false
17       matrix:
18         python-version: ['3.12']
19
20     steps:
21
22     - name: Set up Python ${{ matrix.python-version }}
23       uses: actions/setup-python@v5
24       with:
25         python-version: ${{ matrix.python-version }}
26
27     - name: Get the source code
28       uses: actions/checkout@v4
29
30     - name: Run unit-tests
31       run: |
32         python -m unittest -v -b