commit 937e50ffb24d67c687e1be17b44dfe628c1ed6a0 Author: Mikhail Kornilovich Date: Mon Feb 9 23:37:53 2026 +0300 check workflow diff --git a/.gitea/workflows/check.yaml b/.gitea/workflows/check.yaml new file mode 100644 index 0000000..d200903 --- /dev/null +++ b/.gitea/workflows/check.yaml @@ -0,0 +1,15 @@ +name: Global Runner Check +on: [push] + +jobs: + test-linux: + runs-on: linux + steps: + - run: clang++-21 --version + - run: echo "Hello from Linux host!" + + test-valgrind: + runs-on: valgrind + steps: + - run: valgrind --version + - run: echo "Valgrind is ready for action!"