From aa4a05005842c55e956558861a7a71867342b4af Mon Sep 17 00:00:00 2001 From: cat Date: Tue, 6 Jan 2026 18:35:14 +0200 Subject: [PATCH] test --- .gitea/workflows/compile.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/compile.yml b/.gitea/workflows/compile.yml index 91f5787..c298738 100644 --- a/.gitea/workflows/compile.yml +++ b/.gitea/workflows/compile.yml @@ -5,6 +5,16 @@ on: [push] jobs: Compile: runs-on: ubuntu-latest + container: + image: 'ghcr.io/void-linux/void-glibc-full:20260101r1' steps: - - run: "g++ -std=c++23 main.cpp -o program" - - run: "./program" + - name: Checkout repository + uses: actions/checkout@v3 + + - run: uname -a + + - name: Compile software + run: g++ -std=c++23 main.cpp -o program + + - name: Execute program + run: ./program