summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 8c7d2db1d31d76a702e352e00e283802efb4211c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: CI

on: [push, pull_request]

jobs:
  build:
    name: Build
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-16.04, macos-latest, windows-latest]
    steps:
    - uses: actions/setup-python@v1
      with:
        python-version: '2.7'
    - uses: actions/checkout@v1
      with:
        submodules: true
    - name: mkdir
      run: mkdir -p out
    - name: cmake
      run: cmake ..
      working-directory: out
    - name: build
      run: cmake --build out
    - name: test
      run: cmake --build out --target run-tests