Skip to content

Bump semver from 5.7.1 to 5.7.2 in /extras/editors/vscode #8

Bump semver from 5.7.1 to 5.7.2 in /extras/editors/vscode

Bump semver from 5.7.1 to 5.7.2 in /extras/editors/vscode #8

Workflow file for this run

name: windows
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [windows-2019]
platform: [Win32, x64]
build_type: [Debug, Release]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build
- name: Configure
shell: bash
working-directory: ${{github.workspace}}/build
run: cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -A ${{matrix.platform}} $GITHUB_WORKSPACE
- name: Build
shell: bash
working-directory: ${{github.workspace}}/build
run: cmake --build . --config ${{matrix.build_type}}
- name: Test
shell: bash
working-directory: ${{github.workspace}}/build
run: ctest -C ${{matrix.build_type}}