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 e77aa78 commit 2b7083dCopy full SHA for 2b7083d
.github/workflows/build.yml
@@ -8,11 +8,13 @@ jobs:
8
9
steps:
10
- uses: actions/checkout@v2
11
- - name: Set up Python 3.8
12
- uses: actions/setup-python@v2
+ - name: Set up Python 3.6
+ uses: actions/setup-python@v1
13
with:
14
- python-version: 3.8
+ python-version: 3.6
15
- name: Install dependencies
16
run: |
17
python -m pip install --upgrade pip
18
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
19
+ - name: Install library
20
+ run: python3 setup.py install
0 commit comments