From c80852a8bb4e39c7f43622e007ac5b1cd83f9804 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C4=99drek?= Date: Tue, 9 Dec 2025 11:17:44 +0100 Subject: [PATCH] Added new program, updated workflow --- .gitea/workflows/ci.yaml | 5 +++-- main.c | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 main.c diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 2c962e4..dcabf62 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -5,5 +5,6 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Printing hello - run: echo "Hello, world" + - uses: actions/checkout@v4 + - name: build using gcc + run: gcc -Wall -Werror main.c diff --git a/main.c b/main.c new file mode 100644 index 0000000..f796c80 --- /dev/null +++ b/main.c @@ -0,0 +1,4 @@ +int main() { + printf("Halo, welt!"); + return 0; +}