ci create + some fixes
Some checks are pending
Pipeline / ci (push) Waiting to run

This commit is contained in:
Wingleszy
2026-05-14 01:39:55 +03:00
parent 17301a9cf8
commit 52fc63054b
4 changed files with 52 additions and 4 deletions

31
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,31 @@
name: Pipeline
on:
push:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Copy
uses: actions/checkout@v4
- name: download cppcheck
run: sudo apt update && sudo apt install -y cppcheck
- name: run cppcheck
run: cppcheck project_cpp/
- name: run tests
run: make test
- name: build
run: make
- name: run
run: ./main