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 ebb987f commit 886f0fbCopy full SHA for 886f0fb
.github/workflows/ci.yml
@@ -94,6 +94,20 @@ jobs:
94
id: rename_project
95
run: make rename_project
96
97
+ - name: Install poetry
98
+ uses: abatilo/actions-poetry@v2
99
+ - name: Setup a local virtual environment (if no poetry.toml file)
100
+ run: |
101
+ poetry config virtualenvs.create true --local
102
+ poetry config virtualenvs.in-project true --local
103
+ - uses: actions/cache@v3
104
+ name: Define a cache for the virtual environment based on the dependencies lock file
105
+ with:
106
+ path: ./.venv
107
+ key: venv-${{ hashFiles('poetry.lock') }}
108
+ - name: Install the project dependencies
109
+ run: poetry install
110
+
111
- name: Build package distribution directory
112
id: build_dist
113
run: make build_package
0 commit comments