add main.c
Some checks failed
First CI / build (push) Failing after 8s

This commit is contained in:
Dawid Rutkowski 2024-11-25 10:39:40 +01:00
parent aeb9e8640d
commit 4a627a1c6b
2 changed files with 9 additions and 2 deletions

View File

@ -1,8 +1,10 @@
name: First CI 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

5
main.c Normal file
View File

@ -0,0 +1,5 @@
int main()
{
printf("Halo, Welt!");
return 0;
}