Fix the case for regex when the line could end with the line-break. #38
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 |