dwa
Some checks failed
First CI / build (push) Failing after 12s

This commit is contained in:
Kuba 2024-11-26 14:10:39 +01:00
parent da671aae6f
commit 98c02c8d3c
2 changed files with 10 additions and 3 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
.gitea/workflows/main.c Normal file
View File

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