File tree 1 file changed +11
-12
lines changed
1 file changed +11
-12
lines changed Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
run_smoke_test :
13
-
14
13
runs-on : ubuntu-latest
15
- strategy :
16
- matrix :
17
- python-version : [3.8]
18
-
19
14
steps :
20
15
- uses : actions/checkout@v2
21
- - name : Set up Python ${{ matrix.python-version }}
16
+ - name : Set up Python
22
17
uses : actions/setup-python@v2
23
18
with :
24
- python-version : ${{ matrix.python-version }}
25
- - name : Install dependencies
19
+ python-version : 3.5
20
+ - name : Install pipenv
26
21
run : |
27
22
python -m pip install --upgrade pip
28
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29
- - name : Run example
30
- run : |
31
- python example.py
23
+ python -m pip install --upgrade setuptools wheel
24
+ python -m pip install --upgrade pipenv==2018.11.26
25
+ - name : Install test dependencies
26
+ run : pipenv install --dev
27
+ working-directory : example
28
+ - name : Run smoke test
29
+ run : pipenv run python example.py
30
+ working-directory : example
32
31
env :
33
32
API_BASE_PATH : " http://test-api.regulaforensics.com"
34
33
TEST_LICENSE : ${{secrets.TEST_LICENSE}}
You can’t perform that action at this time.
0 commit comments