Add GitHub action build for CI

This commit is contained in:
Daniel G. Taylor 2019-10-20 23:25:18 -07:00 committed by GitHub
parent a5fac1c2ae
commit f4389a29ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo apt install protobuf-compiler pipenv
pipenv install --dev
- name: Run tests
run: |
pipenv run generate
pipenv run test