Merge pull request #46 from NeroBurner/cmake-action

add a github action running cmake build
This commit is contained in:
quiniouben 2020-02-17 15:46:59 +01:00 committed by GitHub
commit f9777958e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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