Skip to content

Commit f4389a2

Browse files
Add GitHub action build for CI
1 parent a5fac1c commit f4389a2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Install dependencies
13+
run: |
14+
sudo apt install protobuf-compiler pipenv
15+
pipenv install --dev
16+
- name: Run tests
17+
run: |
18+
pipenv run generate
19+
pipenv run test

0 commit comments

Comments
 (0)