Skip to content

Commit

Permalink
Set up GitHub CI (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddugovic committed Oct 4, 2020
1 parent bbc1f4f commit 5b991a2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/c-cpp.yml
@@ -0,0 +1,19 @@
name: C/C++ CI

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: make
run: cd cpp && make
- name: make test
run: cd cpp && make test

0 comments on commit 5b991a2

Please sign in to comment.