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

12 lines
210 B
YAML

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