Skip to content

Workflow file for this run

name: CMake on a single platform
on:
push:
branches: [ "master" ]
env:
BUILD_TYPE: Debug
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DENABLE_SDL=0
- name: Build
run: cmake --build ${{github.workspace}}/build
- name: Test
working-directory: ${{github.workspace}}
run: ctest --test-dir ${{github.workspace}}/build/tests