Merge branch 'master' into kimkulling_dev
commit
22d6b761e6
|
@ -7,8 +7,7 @@ on:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-ubuntu:
|
linux:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -19,4 +18,15 @@ jobs:
|
||||||
run: cmake --build .
|
run: cmake --build .
|
||||||
- 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
|
||||||
|
|
Loading…
Reference in New Issue