Add
Some checks failed
Build C Program / build (push) Failing after 38s

This commit is contained in:
2025-06-04 15:35:21 +12:00
parent d687f65a52
commit 7a6a9b11b7
8 changed files with 3709 additions and 13 deletions

27
.github/workflows/buid.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Build C Program
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up build environment
run: sudo apt-get update && sudo apt-get install -y build-essential
- name: Build with make
run: make
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: build-artifact
path: .