This commit is contained in:
svhp 2023-12-01 10:34:32 +01:00
parent a3ff684ad9
commit 294655ec15
2 changed files with 5 additions and 0 deletions

View File

@ -6,3 +6,4 @@ jobs:
steps: steps:
- name: Printing hello - name: Printing hello
run: echo "Hello, " run: echo "Hello, "
run: gcc -wall -werror main.c

4
main.c Normal file
View File

@ -0,0 +1,4 @@
int main(){
printf("Hello world!");
return 0;
}