Merge pull request #45 from simon04/github-actions-c
Enable GitHub Actions for C
This commit is contained in:
commit
66edf29639
|
|
@ -0,0 +1,12 @@
|
|||
name: C CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: sudo apt-get install protobuf-compiler libprotobuf-dev
|
||||
- run: make -C src
|
||||
Loading…
Reference in New Issue