Compare commits

..

2 Commits

Author SHA1 Message Date
ktos
0389df3010 Merge branch 'main' of https://gitea.cs.pollub.pl/95531/lab7
All checks were successful
First CI / build (push) Successful in 8s
2024-11-22 13:47:30 +01:00
ktos
082bb9b04b plik main.c 2024-11-22 13:43:28 +01:00
2 changed files with 9 additions and 2 deletions

View File

@ -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

6
main.c Normal file
View File

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