Add a build job
Some checks failed
Build / build (push) Failing after 45s

This commit is contained in:
Eugen Wissner 2024-05-17 10:13:08 +02:00
parent b8bb1c78ae
commit cfd0b9aaca
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 bash cmake build-base pkgconf glibmm-dev dbus-dev
- uses: actions/checkout@v4
- name: Build
run: |
cmake -B build
make -C build