We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27121c5 commit fe26b48Copy full SHA for fe26b48
.github/workflows/test-integ.yaml
@@ -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