summaryrefslogtreecommitdiff
path: root/.github/workflows/darwin.yml
blob: b4ea3d11219c1f663a3cee13616eb073099f18cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: darwin
on: [push]
jobs:

  build:
    name: build
    runs-on: [ macos-latest ]
    steps:
    - name: Check out code
      uses: actions/checkout@v1

    - name: Configure
      run: mkdir build && cd build && cmake ..

    - name: build
      run: cmake --build build

    - name: Test
      run: cd build && ctest --output-on-failure