CI: Fix the name of engine_unit-test_no_coverage
authorAlexander Popov <alex.popov@linux.com>
Thu, 2 May 2024 12:53:37 +0000 (15:53 +0300)
committerAlexander Popov <alex.popov@linux.com>
Thu, 2 May 2024 12:54:59 +0000 (15:54 +0300)
.github/workflows/engine_unit-test_no-coverage.yml [new file with mode: 0644]
.github/workflows/engine_unit-test_no_coverage.yml [deleted file]

diff --git a/.github/workflows/engine_unit-test_no-coverage.yml b/.github/workflows/engine_unit-test_no-coverage.yml
new file mode 100644 (file)
index 0000000..a88b84a
--- /dev/null
@@ -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 (file)
index 673b243..0000000
+++ /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