Fix the regex match pattern to include the case with multiple equal s… #47
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test macOS | |
on: [pull_request, push] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get Submodules | |
run: git submodule update --init | |
working-directory: ${{github.workspace}} | |
- name: Setup CMake | |
run: cmake CMakeLists.txt | |
working-directory: ${{github.workspace}}/test | |
- name: Build | |
run: cmake --build . --config ${{env.BUILD_TYPE}} | |
working-directory: ${{github.workspace}}/test | |
- name: Test | |
run: ctest -V . | |
working-directory: ${{github.workspace}}/test |