Merge branch 'master' into kimkulling_dev

pull/2885/head
Kim Kulling 2020-03-29 18:42:43 +02:00 committed by GitHub
commit 22d6b761e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 3 deletions

View File

@ -7,8 +7,7 @@ on:
branches: [ master ] branches: [ master ]
jobs: jobs:
build-ubuntu: linux:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -20,3 +19,14 @@ jobs:
- name: test - name: test
run: cd bin && ./unit run: cd bin && ./unit
mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: cmake CMakeLists.txt
- name: build
run: cmake --build .
- name: test
run: cd bin && ./unit