Second commit
All checks were successful
First CI / build (push) Successful in 9s

This commit is contained in:
Anton Sasnouski 2024-11-25 11:01:06 +01:00
parent 3520c8cb9a
commit c7c5b64325
3 changed files with 10 additions and 2 deletions

View File

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

View File

7
main.c Normal file
View File

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