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

This commit is contained in:
Marcin Badurowicz 2024-11-26 13:32:06 +01:00
parent c443902f9c
commit 64ed2e18e4
2 changed files with 6 additions and 2 deletions

View File

@ -5,5 +5,4 @@ jobs:
hello: hello:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Printing hello - run: gcc main.c
run: echo "Hello, "

5
main.c Normal file
View File

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