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.
2 parents e9d6637 + 7fd639d commit ef8d786Copy full SHA for ef8d786
5 files changed
.github/workflows/python-app.yml
@@ -19,7 +19,7 @@ jobs:
19
- name: Set up Python 3.8
20
uses: actions/setup-python@v2
21
with:
22
- python-version: 3.8
+ python-version: 3.8.7
23
- name: Caches pip
24
uses: actions/cache@v1
25
@@ -30,7 +30,7 @@ jobs:
30
- name: Install dependencies
31
run: |
32
python -m pip install --upgrade pip
33
- pip install poetry tox
+ pip install poetry
34
poetry install
35
- name: Cache tox environments
36
id: cache-tox
@@ -42,6 +42,5 @@ jobs:
42
# only takes a single file path or pattern at the moment.
43
key: ${{ runner.os }}-${{ matrix.python }}-tox-${{ hashFiles('setup.cfg') }}-${{ hashFiles('pyproject.toml') }}
44
45
-
46
- name: Run Tox
47
- run: tox -- --no-cov
+ run: poetry run tox -- --no-cov
0 commit comments