From: Alexander Popov Date: Thu, 2 May 2024 12:53:37 +0000 (+0300) Subject: CI: Fix the name of engine_unit-test_no_coverage X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=17d9f3b47c961d08823e0f17ed1ea49a0d4ccf30;p=kconfig-hardened-check.git CI: Fix the name of engine_unit-test_no_coverage --- diff --git a/.github/workflows/engine_unit-test_no-coverage.yml b/.github/workflows/engine_unit-test_no-coverage.yml new file mode 100644 index 0000000..a88b84a --- /dev/null +++ b/.github/workflows/engine_unit-test_no-coverage.yml @@ -0,0 +1,32 @@ +name: engine unit-test without coverage control + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + engine_unit-test_no-coverage: + + 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: Run unit-tests + run: | + python -m unittest -v -b diff --git a/.github/workflows/engine_unit-test_no_coverage.yml b/.github/workflows/engine_unit-test_no_coverage.yml deleted file mode 100644 index 673b243..0000000 --- a/.github/workflows/engine_unit-test_no_coverage.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: engine unit-test - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - engine_unit-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: Run unit-tests - run: | - python -m unittest -v -b