Opis zmian zad3
All checks were successful
First CI / build (push) Successful in 15s

This commit is contained in:
Kowal
2025-11-20 15:08:14 +01:00
parent 315c477ee3
commit fdcd272f48

View File

@@ -1,10 +1,14 @@
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 - name: build using gcc
run: gcc -Wall -Werror main.c run: gcc -Wall -Werror main.c -o program
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: program
path: program