From 5bc2e84c908cd8ca82f2241338b75726cc0e7a28 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Sun, 29 Mar 2020 17:55:28 +0200 Subject: [PATCH] Add mac --- .github/workflows/ccpp.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 61e804b2e..103b1ece0 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -7,8 +7,7 @@ on: branches: [ master ] jobs: - build-ubuntu: - + linux: runs-on: ubuntu-latest steps: @@ -19,4 +18,15 @@ jobs: run: cmake --build . - name: test 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