We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
poetry
1 parent 384a2eb commit 8f03a6aCopy full SHA for 8f03a6a
.github/workflows/release.yml
@@ -11,14 +11,17 @@ jobs:
11
12
steps:
13
- uses: actions/checkout@v4
14
- - name: Set up Python
15
- uses: actions/setup-python@v5
+ - uses: actions/setup-python@v5
16
with:
17
- python-version: "3.12"
18
- - name: Install the package
19
- run: python -m pip install --editable .[test]
+ python-version: ${{ matrix.python-version }}
+ - name: Run image
+ uses: abatilo/actions-poetry@v3
+ with:
20
+ poetry-version: ${{ matrix.poetry-version }}
21
+ - name: Install dependencies
22
+ run: poetry install --with dev
23
- name: Run tests
- run: pytest
24
+ run: poetry run pytest
25
- name: Install build libraries
26
run: python3 -m pip install build
27
- name: Build the package
0 commit comments