Skip to content

Commit 22b82b0

Browse files
committed
Fix CI build
1 parent f86b49b commit 22b82b0

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,17 @@ jobs:
2020
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
23-
23+
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install flake8 pytest pytest-cov pytest-asyncio poetry
28-
poetry install
29-
30-
- name: Run tests with pytest
31-
run: |
32-
poetry run pytest tests/ -v
27+
pip install poetry twine
28+
poetry install --with dev
29+
30+
- name: Run tests
31+
run: poetry run pytest
32+
33+
- name: Build package
34+
run: poetry build
3335

3436

0 commit comments

Comments
 (0)