From 892cfd81c5f9fd53cbd3012b28779d2c427e7478 Mon Sep 17 00:00:00 2001 From: holek363 Date: Thu, 20 Nov 2025 13:12:26 +0100 Subject: [PATCH] ADD: main.c , UPD: ci.yml --- .gitea/workflows/ci.yml | 5 +++-- main.c | 7 +++++++ 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 main.c diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b4e3814..dcabf62 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,5 +5,6 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Printing hello - run: echo "Hello, 🌍" + - 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..8b56447 --- /dev/null +++ b/main.c @@ -0,0 +1,7 @@ +#include stdio.h + +int main() +{ +printf("Halo, Welt!"); +return 0; +} \ No newline at end of file