Skip to content

Missing header <algorithm> #104

Missing header <algorithm>

Missing header <algorithm> #104

Workflow file for this run

name: Mac
on:
push:
branches: [master, static]
pull_request:
branches: [master, static]
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: |
cmake -E make_directory build
cd build
cmake ..
- name: Compile
working-directory: build
run: cmake --build . -j2
- name: Test
working-directory: build
run: ctest -j2