From 4efbea085dacb3e4b31018a64d4f64e3545aa959 Mon Sep 17 00:00:00 2001 From: 21_SavchenkoAA <21_SavchenkoAA@iux.local> Date: Sat, 16 May 2026 20:29:57 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20.gitea/workflows/ci.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f8a515d..feb4d6b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -3,11 +3,11 @@ name: CI Pipeline on: push: branches: - - main # Запуск только при пуше в main + - main jobs: lint: - name: 1. Lint (Static Analysis) + name: 1. Lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -22,9 +22,9 @@ jobs: cppcheck --enable=all -I include/ --suppress=missingIncludeSystem src/ tests/ --error-exitcode=1 test: - name: 2. Test (Unit Tests) + name: 2. Test runs-on: ubuntu-latest - needs: lint # Запускается только если Lint прошел успешно + needs: lint steps: - uses: actions/checkout@v4 @@ -40,9 +40,9 @@ jobs: cd build && ctest --output-on-failure build: - name: 3. Build (Release) + name: 3. Build runs-on: ubuntu-latest - needs: test # Запускается только если Test прошел успешно + needs: test steps: - uses: actions/checkout@v4