Added workflow examples
Some checks failed
Compile / Compile (push) Failing after 26s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s

This commit is contained in:
2026-01-06 17:05:50 +02:00
parent 02a7af086d
commit 663ce0d082
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
name: Compile
run-name: Compiling the software each time we do a push
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- run: "g++ -std=c++23 main.cpp -o program"
- run: "./program"