1
0
test3/.gitea/workflows/test1.yaml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 11: mapping key "run" already defined at line 10
2025-05-24 17:01:19 +03:00

18 lines
342 B
YAML

name: Build
run-name: build
on: [push]
jobs:
build:
runs-on: debian-latest
steps:
- name: Set up env
run: apt update
run: apt install -y gcc
- name: Build funtions
run: gcc -c f.c
- name: Build core
run: gcc -c core.c
- name: Link program
run: gcc f.o core.o -o core