Third commit
Some checks failed
First CI / build (push) Failing after 16s

This commit is contained in:
SEBALAP2 2024-11-26 14:11:52 +01:00
parent 21a75b12f2
commit 18e891d369
2 changed files with 8 additions and 2 deletions

View File

@ -5,5 +5,6 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Printing hello
run: echo "Hello, world"
- uses: actions/checkout@v4
- name: build using gcc
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;
}