test1
Some checks failed
First CI / build (push) Failing after 4s

This commit is contained in:
Marcin Badurowicz 2024-11-25 10:17:41 +01:00
parent 988394d77c
commit d959943448
2 changed files with 6 additions and 2 deletions

View File

@ -5,5 +5,4 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Printing hello
run: echo "Hello, ❤️‍🩹"
- run: gcc -Wall -Werror main.c

5
main.c Normal file
View File

@ -0,0 +1,5 @@
int main()
{
printf("Halo, Welt!");
return 0;
}