my super app
Some checks failed
First CI / build (push) Failing after 22s

This commit is contained in:
Marcin Badurowicz 2024-11-22 10:49:25 +01:00
parent 7063608728
commit a6f0c1a65b
2 changed files with 9 additions and 2 deletions

View File

@ -6,5 +6,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Printing hello - name: pobranie kodu z repo
run: echo "Hello, ❤️‍🩹" uses: actions/checkout@v4
- 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;
}