Files
UsbMakroBoard/.gitea/workflows/ci.yaml
Timo Behrendt 83f4a683cd ci: add simple test pipeline (#5)
Reviewed-on: #5
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-12-27 12:40:15 +01:00

25 lines
512 B
YAML

name: CI
on:
pull_request:
jobs:
build:
runs-on:
- ubuntu-latest
- linux_amd64
steps:
- uses: actions/checkout@v4
- run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake
- name: Configure and build
run: |
mkdir -p build
cd build
cmake ..
cmake --build .
- name: Verify binary
run: |
test -f build/usbmakroboard && echo "Binary built successfully" || exit 1