check workflow
All checks were successful
Global Runner Check / test-valgrind (push) Successful in 0s
Global Runner Check / test-linux (push) Successful in 0s

This commit is contained in:
2026-02-09 23:37:53 +03:00
commit 937e50ffb2

View File

@@ -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!"