Added test program
Some checks failed
Compile / Compile (push) Failing after 1s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s

This commit is contained in:
2026-01-06 18:33:19 +02:00
parent 663ce0d082
commit a6cd50396c
2 changed files with 8 additions and 1 deletions

View File

@@ -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:

7
main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <print>
int main() {
std::print("Hello World!\n");
return 0;
}