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 57cbcfc commit 2dc2b00Copy full SHA for 2dc2b00
1 file changed
.github/workflows/build.yml
@@ -187,12 +187,16 @@ jobs:
187
uses: actions/checkout@v4
188
with:
189
submodules: true
190
+ - name: Setup poetry
191
+ run: |
192
+ pipx install poetry
193
+ poetry install --only=build
194
- name: Build
195
run: |
- make $MAKEOPTS -C lib/pbio/test
196
+ poetry run make $MAKEOPTS -C lib/pbio/test
197
- name: Build docs
198
199
make $MAKEOPTS -C lib/pbio/doc
200
- name: Build coverage
201
- make $MAKEOPTS -C lib/pbio/test build-coverage/lcov.info
202
+ poetry run make $MAKEOPTS -C lib/pbio/test build-coverage/lcov.info
0 commit comments