aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/cmake-test.yaml
blob: d6f254972b4875b68d51851f3edd4434bf32d55e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: CMakeTest

on: [push, workflow_dispatch]

jobs:
  cmake_test:
    runs-on: ubuntu-latest

    env:
      CXX: clang++

    steps:
    - uses: actions/checkout@v3

    - name: Configure CMake
      run: cmake .

    - name: Build
      run: cmake --build .

    - name: Test
      run: ctest