Files
How2UseActions/.gitea/workflows/compile.yml
cat a6cd50396c
Some checks failed
Compile / Compile (push) Failing after 1s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
Added test program
2026-01-06 18:33:19 +02:00

11 lines
189 B
YAML

name: Compile
run-name: Compiling the software
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- run: "g++ -std=c++23 main.cpp -o program"
- run: "./program"