second
Some checks failed
First CI / build (push) Failing after 13s

This commit is contained in:
ja 2023-11-21 19:13:05 +01:00
parent 23d682f344
commit 03b1504b9c
2 changed files with 11 additions and 2 deletions

View File

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

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

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