Add a build action
All checks were successful
Test / build (push) Successful in 21s

This commit is contained in:
2025-08-01 21:18:16 +02:00
parent 96817ee672
commit d2dea66ddb
4 changed files with 44 additions and 11 deletions

View File

@@ -0,0 +1,25 @@
name: Test
on:
push:
branches:
- '**'
pull_request:
branches: [master]
jobs:
build:
runs-on: alpine
steps:
- name: Set up environment
shell: ash {0}
run: |
apk -U upgrade
apk add --no-cache git bash cmake build-base ninja-is-really-ninja boost-dev
- uses: actions/checkout@v4
- name: Build
run: |
cmake -B build -G Ninja -DKATJA_BUILD_TUI=Off
ninja -C build
- name: Run tests
run: ninja -C build test