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

13 lines
233 B
YAML

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