ADDED C CODE
All checks were successful
First CI / build (push) Successful in 10s

This commit is contained in:
RaVi 2023-11-21 13:55:54 +01:00
parent dac76a590a
commit 8fad44b198
2 changed files with 10 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

6
main.c Normal file
View File

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