fix
All checks were successful
First CI / build (push) Successful in 7s

This commit is contained in:
r00j3K 2024-11-25 10:43:17 +01:00
parent 1f9ddd003d
commit 54c2a54cbc
2 changed files with 10 additions and 2 deletions

View File

@ -5,5 +5,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

7
main.c Normal file
View File

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