json/.github/workflows/ubuntu.yml
2020-05-12 20:37:50 +02:00

17 lines
262 B
YAML

name: Ubuntu
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: cmake
run: cmake -S . -B build
- name: build
run: cmake --build build
- name: test
run: cd build ; ctest -j 10