mirror of
https://github.com/nlohmann/json.git
synced 2024-12-03 21:59:08 +08:00
20 lines
297 B
YAML
20 lines
297 B
YAML
name: macOS
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: prepare
|
|
run: mkdir build
|
|
- name: cmake
|
|
run: cd build ; cmake ..
|
|
- name: build
|
|
run: make -C build
|
|
- name: test
|
|
run: cd build ; ctest -j 10
|