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 ecb675d commit 7572d6cCopy full SHA for 7572d6c
.github/workflows/tests.yaml
@@ -7,20 +7,11 @@ on:
7
branches:
8
- master
9
jobs:
10
- tests-python2:
11
- runs-on: ubuntu-20.04
12
- steps:
13
- - uses: actions/checkout@v2
14
- - run: sudo apt install python2
15
- - run: curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
16
- - run: sudo python2 get-pip.py
17
- - run: pip2 install -r requirements-2.txt
18
- - run: python2 tests.py
19
tests-python3:
20
runs-on: ubuntu-20.04 # this should probably get updated to a python 3.9+ image
21
steps:
22
- uses: actions/checkout@v2
23
- - name: print python verions
+ - name: print python version
24
run: python3 --version
25
- name: install requirements
26
run: pip3 install -r requirements-3.txt
0 commit comments