change ci.yml zad2
Some checks failed
First CI / build (push) Failing after 4s

This commit is contained in:
GrzegorzRog22 2024-11-25 11:08:16 +01:00
parent b5dc5e40b0
commit 3299d0f727
2 changed files with 9 additions and 3 deletions

View File

@ -5,5 +5,6 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Printing hello
run: echo "Hello nad welcome"
- uses: action/checkout@v4
- name: build using gcc
run: gcc -wall -werror main.c

7
main.c
View File

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