Files
How2UseActions/.gitea/workflows/compile.yml
cat 663ce0d082
Some checks failed
Compile / Compile (push) Failing after 26s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s
Added workflow examples
2026-01-06 17:05:50 +02:00

11 lines
212 B
YAML

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"