first commit
Some checks failed
CI/CD / build-and-test (push) Failing after 37s

This commit is contained in:
SILCHENKO
2026-05-24 18:33:10 +03:00
parent ccac72f06f
commit 83476661ee
3 changed files with 1 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
name: C++ CI/CD Pipeline name: CI/CD
on: on:
push: push:
@@ -22,7 +22,6 @@ jobs:
- name: Run Static Analysis (Cppcheck) - name: Run Static Analysis (Cppcheck)
run: | run: |
cppcheck --enable=all --language=c++ --error-exitcode=1 main.cpp test.cpp cppcheck --enable=all --language=c++ --error-exitcode=1 main.cpp test.cpp
# Флаг --error-exitcode=1 остановит пайплайн, если найдутся критические ошибки
- name: Configure CMake - name: Configure CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release

0
README.md Normal file
View File

View File

@@ -1,7 +1,6 @@
#include <iostream> #include <iostream>
int main() { int main() {
// Тест проходит успешно, если возвращает 0
std::cout << "Running simple test..." << std::endl; std::cout << "Running simple test..." << std::endl;
return 0; return 0;
} }