aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/cmake.yml
blob: e1b9cb8f50dc3d10bfd2e9cef80751d0e483a5f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: CMake Builds

on:
  push:
  pull_request:

jobs:
  build:
    runs-on: $ {{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
      - name: Configure CMake
        run: cmake -B build -S .
      - name: Build
        run: cmake --build build