Skip to content

Commit

Permalink
Merge branch 'master' of github.com:georgmartius/vid.stab
Browse files Browse the repository at this point in the history
  • Loading branch information
Georg Martius committed Nov 7, 2020
2 parents b1949f6 + 0b14e28 commit 494c386
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: C/C++ CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: cmake
run: cmake .
- name: make
run: make
- name: cmake tests
run: cmake .
working-directory: tests
- name: make tests
run: make
working-directory: tests
- name: run tests
run: ./tests --all
working-directory: tests

0 comments on commit 494c386

Please sign in to comment.