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

on: [push, workflow_dispatch]

jobs:
  cmake_test:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3

    - name: Configure CMake
      run: cmake .

    - name: Build
      run: cmake --build .

    - name: Test
      run: ctest