mirror of
https://github.com/nlohmann/json.git
synced 2026-04-03 14:48:52 +00:00
👷 add more GitHub actions workflows
This commit is contained in:
19
.github/workflows/macos.yml
vendored
Normal file
19
.github/workflows/macos.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
name: Windows
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-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
|
||||
Reference in New Issue
Block a user