1
0
mirror of https://github.com/nlohmann/json synced 2024-12-04 01:01:05 +00:00
nlohmannjson/.github/workflows/ubuntu.yml

18 lines
262 B
YAML
Raw Normal View History

name: Ubuntu
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: cmake
run: cmake -S . -B build
2019-09-02 20:15:11 +00:00
- name: build
run: cmake --build build
2019-09-02 20:15:11 +00:00
- name: test
run: cd build ; ctest -j 10