Compare commits

3 Commits

Author SHA1 Message Date
Uladzislau Kamisarau
d807ce88e0 Artefact attemt 2
All checks were successful
First CI / build (push) Successful in 17s
2025-11-21 13:59:41 +01:00
Uladzislau Kamisarau
29a18ce3b3 Quck fix: move main.c to root dir
All checks were successful
First CI / build (push) Successful in 9s
2025-11-21 13:58:06 +01:00
Uladzislau Kamisarau
c308a33f05 Change console log
Some checks failed
First CI / build (push) Failing after 14s
2025-11-21 13:52:44 +01:00
2 changed files with 15 additions and 8 deletions

View File

@@ -1,10 +1,17 @@
name: First CI name: First CI
on: [push] on: [push]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: build using gcc
run: gcc -Wall -Werror main.c
- name: build using gcc
run: gcc -Wall -Werror main.c -o program
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: program
path: program

View File

@@ -2,6 +2,6 @@
int main() int main()
{ {
printf("Halo, Welt!"); printf("Halo, World!");
return 0; return 0;
} }