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 eb8fbd2 commit e416bb8Copy full SHA for e416bb8
.github/workflows/ci.yml
@@ -26,7 +26,7 @@ jobs:
26
python-version: ${{ matrix.python-version }}
27
28
- name: Install poetry
29
- run: pipx install poetry
+ uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
30
31
- uses: ./.github/actions/build
32
- uses: ./.github/actions/build-docs
Makefile
@@ -17,7 +17,7 @@ help: #! Show this help message
17
18
.PHONY: install
19
install:
20
- @poetry install
+ poetry install
21
22
#
23
# Quality control checks
@@ -31,6 +31,7 @@ test: install
.PHONY: lint
lint: #! Run type analysis and linting checks
33
lint: install
34
+ poetry run python --version
35
poetry run mypy ld_eventsource testing
36
37
0 commit comments