1
0
test3/.gitea/workflows/test1.yaml
hasslesstech 2d962fc713
Some checks failed
Build / build (push) Failing after 14s
add functions
2025-05-24 16:59:22 +03:00

15 lines
261 B
YAML

name: Build
run-name: build
on: [push]
jobs:
build:
runs-on: debian-latest
steps:
- 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