added main.c
Some checks failed
First CI / build (push) Failing after 11s

This commit is contained in:
LagsKing 2023-11-21 18:17:56 +01:00
parent d26060e59f
commit 011a1a895f
2 changed files with 7 additions and 1 deletions

View File

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

5
.gitea/workflows/main.c Normal file
View File

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