Try using github actions

Let's see how badly this goes
This commit is contained in:
Petr Mrázek
2019-09-19 10:56:11 +02:00
committed by GitHub
parent a35a2e877e
commit 6531aaa7bc

20
.github/workflows/ccpp.yml vendored Normal file
View File

@ -0,0 +1,20 @@
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