Skip to content

Commit

Permalink
[ci] add ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sakethramanujam committed Sep 13, 2020
1 parent 3ad950f commit 3b82e1a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Client Tests

on: [pull_request]

jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies and test
env:
working-directory: cpcbccr-python-client
run: |
python -m pip install --upgrade pip
python setup.py install
pip install pytest
pytest tests/*

0 comments on commit 3b82e1a

Please sign in to comment.