Skip to content

Commit dcbd4e7

Browse files
Fix CI failing due to Python version (#325)
1 parent 39c35f6 commit dcbd4e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ env:
1515

1616
jobs:
1717
unit-tests:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-20.04
1919
strategy:
2020
fail-fast: false
2121

2222
steps:
2323
- uses: actions/checkout@v2
2424
- uses: actions/setup-python@v2
2525
with:
26-
python-version: '3.6'
26+
python-version: '3.6.7'
2727
- name: Unit tests
2828
run: |
2929
python3 setup.py install
@@ -49,4 +49,4 @@ jobs:
4949
pip install pytest
5050
pip install mock
5151
pip install boto3
52-
./test-integration/run/run.sh ${{ matrix.test-type }} 1000 100 7
52+
./test-integration/run/run.sh ${{ matrix.test-type }} 1000 100 7

0 commit comments

Comments
 (0)