1
0
mirror of https://github.com/nlohmann/json synced 2024-11-26 13:50:07 +00:00

👷 try GitHub Actions

This commit is contained in:
Niels Lohmann 2019-09-02 21:35:53 +02:00 committed by GitHub
parent bf4156056b
commit 90c1c24ccb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.github/workflows/ccpp.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: prepare
run: mkdir build
- name: cmake
run: cd build ; cmake ..
- name: make
run: make -C build