Create ccpp.yml

extensions
Volodymyr Shymanskyy 5 years ago committed by GitHub
parent cf6e666183
commit 18cc3716b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,17 @@
name: C/C++ CI
on: [push]
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: mkdir build && cd build && cmake ..
- name: make
run: cmake --build build
- name: test
run: cd test && ./run-spec-test.py
Loading…
Cancel
Save