-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changed action for installing poetry * Fix name * Fix ci * Fix ci * Fix cache * Fix poetry in release workflow
- Loading branch information
Showing
2 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,12 @@ jobs: | |
with: | ||
python-version: ${{ matrix.python }} | ||
|
||
- name: Python Poetry Action | ||
uses: abatilo/[email protected] | ||
- name: Python Install Poetry | ||
uses: Gr1N/setup-poetry@v7 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pypoetry/virtualenvs | ||
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} | ||
|
||
- name: Install dependencies | ||
run: poetry install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,8 +20,12 @@ jobs: | |
with: | ||
python-version: 3.8 | ||
|
||
- name: Python Poetry Action | ||
uses: abatilo/[email protected] | ||
- name: Python Install Poetry | ||
uses: Gr1N/setup-poetry@v7 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/.cache/pypoetry/virtualenvs | ||
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} | ||
|
||
- name: Install dependencies | ||
run: poetry install | ||
|