From c54212a58fe52943b756fa9162b54fed3f43a746 Mon Sep 17 00:00:00 2001 From: Ziabs <118732122+Ziabs1@users.noreply.github.com> Date: Tue, 9 Dec 2025 12:28:13 +0100 Subject: [PATCH] Dodano plik main.c, modyfikacja ci --- .gitea/workflows/ci.yml | 5 +++-- main.c | 5 +++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 main.c diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 26c2e4b..8866689 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -4,5 +4,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..5125862 --- /dev/null +++ b/main.c @@ -0,0 +1,5 @@ +int main() +{ +printf("Halo, Welt!"); +return 0; +} \ No newline at end of file