| 12345678910111213141516171819202122 | 
							- name: Continuous Integration
 
- on: [push, pull_request]
 
- jobs:
 
-   build:
 
-     name: ${{ matrix.buildsystem }} on ${{ matrix.os }}
 
-     runs-on: ${{ matrix.os }}
 
-     strategy:
 
-       matrix:
 
-         buildsystem: [bazel, cmake]
 
-         os: [macOS-10.14, ubuntu-16.04, windows-2016]
 
-         exclude:
 
-         - os: windows-2016
 
-           buildsystem: bazel
 
-     steps:
 
-       - uses: actions/checkout@master
 
-         with:
 
-           submodules: true
 
-       - name: Prepare
 
-         run: .github/scripts/run-prepare ${{ matrix.buildsystem }} ${{ matrix.os }}
 
-       - name: Test
 
-         run: .github/scripts/run-${{ matrix.buildsystem }}-test ${{ matrix.os }}
 
 
  |