Add a build job
All checks were successful
Build / build (push) Successful in 15s

This commit is contained in:
Eugen Wissner 2024-05-17 10:13:08 +02:00
parent b8bb1c78ae
commit 328c22c409
Signed by: belka
GPG Key ID: A27FDC1E8EE902C0

View File

@ -0,0 +1,23 @@
name: Build
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 pkgconf glibmm-dev dbus-dev
- uses: actions/checkout@v4
- name: Build
run: |
cmake -B build
make -C build