Skip to content

GH workflows: reduce runners to ubuntu-latest #3

GH workflows: reduce runners to ubuntu-latest

GH workflows: reduce runners to ubuntu-latest #3

Workflow file for this run

name: CMake
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
BUILD_TYPE: Debug
jobs:
build:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGATEKIT_TEST_ENABLE_SANITIZERS=ON
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build
run: bin/gatekit-tests