From a6cd50396ca2ee238766f7ccec17909f76fba044 Mon Sep 17 00:00:00 2001 From: cat Date: Tue, 6 Jan 2026 18:33:19 +0200 Subject: [PATCH] Added test program --- .gitea/workflows/compile.yml | 2 +- main.cpp | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 main.cpp diff --git a/.gitea/workflows/compile.yml b/.gitea/workflows/compile.yml index 968b63b..91f5787 100644 --- a/.gitea/workflows/compile.yml +++ b/.gitea/workflows/compile.yml @@ -1,5 +1,5 @@ name: Compile -run-name: Compiling the software each time we do a push +run-name: Compiling the software on: [push] jobs: diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..bed1550 --- /dev/null +++ b/main.cpp @@ -0,0 +1,7 @@ +#include + +int main() { + std::print("Hello World!\n"); + + return 0; +}