Files
cppcheck-action/.github/workflows/buid.yml
Lucas Petrino 7a6a9b11b7
Some checks failed
Build C Program / build (push) Failing after 38s
Add
2025-06-04 15:35:21 +12:00

27 lines
482 B
YAML

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: .