add a github action running cmake build

- run on ubuntu-latest
- install dependencies alsa, pulseaudio and jack
This commit is contained in:
NeroBurner 2020-02-17 13:36:32 +01:00
parent 64b35b4a18
commit 0df5c68796
1 changed files with 15 additions and 0 deletions

15
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install alsa pulse and jack
run: sudo apt-get -y install libasound2-dev libpulse-dev libjack-dev
- name: run-cmake
uses: lukka/run-cmake@v0.10