forked from Github-Mirrors/canaille
Fixed GHA poetry installation
This commit is contained in:
parent
231a931cf0
commit
50e42969e3
1 changed files with 3 additions and 3 deletions
6
.github/workflows/tests.yaml
vendored
6
.github/workflows/tests.yaml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ~/.cache/pip
|
||||||
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }}
|
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }}
|
||||||
- run: pip install tox
|
- run: pip install tox poetry
|
||||||
- run: tox -e py
|
- run: tox -e py
|
||||||
style:
|
style:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -48,7 +48,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pre-commit
|
path: ~/.cache/pre-commit
|
||||||
key: pre-commit|${{ hashFiles('.pre-commit-config.yaml') }}
|
key: pre-commit|${{ hashFiles('.pre-commit-config.yaml') }}
|
||||||
- run: pip install tox
|
- run: pip install tox poetry
|
||||||
- run: tox -e style
|
- run: tox -e style
|
||||||
doc:
|
doc:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -61,5 +61,5 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ~/.cache/pip
|
||||||
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }}
|
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }}
|
||||||
- run: pip install tox
|
- run: pip install tox poetry
|
||||||
- run: tox -e doc
|
- run: tox -e doc
|
||||||
|
|
Loading…
Reference in a new issue