From 7764e2184e6fa0491ff0492a29c94b00f6f92714 Mon Sep 17 00:00:00 2001 From: Edward Wall Date: Fri, 4 Jul 2025 14:56:56 +0200 Subject: [PATCH] readds test --- .gitea/workflows/action.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/action.yaml b/.gitea/workflows/action.yaml index 2636f20..2be5bc5 100644 --- a/.gitea/workflows/action.yaml +++ b/.gitea/workflows/action.yaml @@ -11,13 +11,16 @@ jobs: run: cppcheck --std=c++17 --addon=cert --addon=misc --error-exitcode=1 src/*.cpp - name: formatting run: clang-format --style=file --Werror --dry-run src/*.cpp - Build: + BuildAndTest: runs-on: linepics steps: - name: checkout repo uses: actions/checkout@v4 - - run: | - ls -lsah + - name: build + run: | sed -i 's/ARCH_FILTER=.*/ARCH_FILTER=linux%/' Makefile echo "LIBVERSION=${CI_COMMIT_TAG:-0.0.1}" >> Makefile make install + - name: test + run: | + python3 test/test.py