Skip to content

Commit fe26b48

Browse files
Add github action to run integration tests
1 parent 27121c5 commit fe26b48

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/test-integ.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Run integration tests against the integ API endpoint
2+
name: test integ
3+
on: [push]
4+
jobs:
5+
run-pytest:
6+
runs-on: ubuntu-latest
7+
env:
8+
GROUNDLIGHT_API_TOKEN: ${{ secrets.GROUNDLIGHT_API_TOKEN }}
9+
steps:
10+
- name: get code
11+
uses: actions/checkout@v2
12+
- name: install python
13+
uses: actions/setup-python@v2
14+
with:
15+
python-version: 3.9
16+
- name: install poetry
17+
run: |
18+
pip install -U pip
19+
pip install poetry
20+
poetry install
21+
- name: run tests
22+
run: make test-integ

0 commit comments

Comments
 (0)