From 7adea3b584fdb28eff34bbe564ece9a8ba67f51e Mon Sep 17 00:00:00 2001
From: Patryk Nowacki
Date: Tue, 16 Dec 2025 09:31:15 +0100
Subject: [PATCH] Zadanie 2: Kompilacja aplikacji C
---
.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 ca3e55b..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..b5f69bd
--- /dev/null
+++ b/main.c
@@ -0,0 +1,5 @@
+int main()
+{
+ printf("Halo, Welt!");
+ return 0;
+}