json/.github/workflows/ccpp.yml

20 lines
305 B
YAML
Raw Normal View History

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 ..
2019-09-02 22:15:11 +02:00
- name: build
run: make -C build
2019-09-02 22:15:11 +02:00
- name: test
run: cd build ; ctest -j 10