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