json/.github/workflows/ubuntu.yml

20 lines
299 B
YAML
Raw Normal View History

name: Ubuntu
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-03 04:15:11 +08:00
- name: build
run: make -C build
2019-09-03 04:15:11 +08:00
- name: test
run: cd build ; ctest -j 10