lab7/.gitea/workflows/ci.yml
Workflow config file is invalid. Please check your config file: yaml: line 7: mapping values are not allowed in this context
2024-11-22 13:50:32 +01:00

16 lines
337 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 -o program
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: program
path: program