Skip to content

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

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 #7

Workflow file for this run

name: linux
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
cxx: [g++-8, g++-9, g++-10, clang++-8, clang++-9, clang++-10]
build_type: [Debug, Release]
runs-on: ubuntu-20.04
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
env:
CXX: ${{matrix.cxx}}
run: cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} $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}}