test
Some checks failed
Compile / Compile (push) Failing after 10s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 11s

This commit is contained in:
2026-01-06 18:35:14 +02:00
parent a6cd50396c
commit eee2f911ab

View File

@@ -4,7 +4,15 @@ on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
runs-on: void-linux
steps:
- run: "g++ -std=c++23 main.cpp -o program"
- run: "./program"
- name: Checkout repository
uses: actions/checkout@v3
- uses: uname -a
- name: Compile software
run: g++ -std=c++23 main.cpp -o program
- name: Execute program
run: ./program