add CI workflow and initial main.c file with a simple main function
Some checks failed
First CI / build (push) Has been cancelled

This commit is contained in:
Jakub Nowosad
2025-12-09 00:45:29 +01:00
parent ecee700966
commit 40222b22c2
2 changed files with 11 additions and 2 deletions

View File

@@ -1,8 +1,10 @@
name: First CI
on: [push]
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
main.c Normal file
View File

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