fmt/.github/workflows/macos.yml

29 lines
679 B
YAML
Raw Normal View History

2020-11-03 18:46:03 +00:00
name: macos
2020-11-03 18:45:16 +00:00
on: [push]
jobs:
build:
runs-on: macos-10.15
2020-11-03 20:16:15 +00:00
strategy:
matrix:
build_type: [Debug, Release]
2020-11-03 18:45:16 +00:00
steps:
- uses: actions/checkout@v2
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
working-directory: ${{runner.workspace}}/build
2020-11-03 20:16:15 +00:00
run: cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} $GITHUB_WORKSPACE
2020-11-03 18:45:16 +00:00
- name: Build
working-directory: ${{runner.workspace}}/build
2020-11-03 20:16:15 +00:00
run: cmake --build . --config ${{matrix.build_type}}
2020-11-03 18:45:16 +00:00
- name: Test
working-directory: ${{runner.workspace}}/build
2020-11-03 20:16:15 +00:00
run: ctest -C ${{matrix.build_type}}