Skip to content

Commit e416bb8

Browse files
committed
build: Fix poetry referencing the wrong version of poetry
1 parent eb8fbd2 commit e416bb8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
python-version: ${{ matrix.python-version }}
2727

2828
- name: Install poetry
29-
run: pipx install poetry
29+
uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
3030

3131
- uses: ./.github/actions/build
3232
- uses: ./.github/actions/build-docs

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ help: #! Show this help message
1717

1818
.PHONY: install
1919
install:
20-
@poetry install
20+
poetry install
2121

2222
#
2323
# Quality control checks
@@ -31,6 +31,7 @@ test: install
3131
.PHONY: lint
3232
lint: #! Run type analysis and linting checks
3333
lint: install
34+
poetry run python --version
3435
poetry run mypy ld_eventsource testing
3536

3637
#

0 commit comments

Comments
 (0)