Sergey Cherepiuk dbf4381071
All checks were successful
First CI / build (push) Successful in 20s
Compilation step is added to pipeline
2023-11-23 16:27:13 +01:00

15 lines
337 B
YAML

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