6531aaa7bc
Let's see how badly this goes
21 lines
296 B
YAML
21 lines
296 B
YAML
name: Smoke test
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: configure
|
|
run: |
|
|
mkdir build && cd build && cmake ..
|
|
- name: build
|
|
run: |
|
|
make -j4
|
|
- name: test
|
|
run: |
|
|
ctest -V
|