lab7/.gitea/workflows/ci.yml
JakubLaptop 7b65da3c4b
All checks were successful
First CI / build (push) Successful in 8s
zad 3
2024-11-26 13:56:53 +01:00

16 lines
297 B
YAML

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