Compare commits

..

3 Commits

Author SHA1 Message Date
mjakmisia
96ee323cf0 c
Some checks failed
First CI / build (push) Failing after 14s
2025-11-20 13:32:13 +01:00
mjakmisia
9eb3344ebd commit 2025-11-20 13:31:54 +01:00
mjakmisia
8414bc27ff commit 2025-11-20 13:27:56 +01:00
2 changed files with 10 additions and 2 deletions

7
.gitea/main.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("Halo, Welt!");
return 0;
}

View File

@@ -4,5 +4,6 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Printing hello - uses: actions/checkout@v4
run: echo "Hello, " - name: build using gcc
run: gcc -Wall -Werror main.c