Modified the pipeline
Some checks failed
First CI / build (push) Failing after 14s

This commit is contained in:
Sergey Cherepiuk 2023-11-23 16:20:46 +01:00
parent 2795033049
commit 8f1162246d
2 changed files with 6 additions and 1 deletions

View File

@ -5,5 +5,6 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Printing hello
run: echo "Hello, World!"
run: gcc -Wall -Werror main.c

4
main.c Normal file
View File

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