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

@ -2,8 +2,9 @@ name: First CI
on: [push] on: [push]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Printing hello - uses: actions/checkout@v4
run: echo "Hello, " - 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;
}