Skip to content

Commit 8a90cd0

Browse files
committed
fix: update CI workflow
1 parent 0867a00 commit 8a90cd0

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Checkout code
1818
uses: actions/checkout@v4
1919

20-
- name: Set up Python
20+
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
@@ -27,15 +27,10 @@ jobs:
2727
python -m pip install --upgrade pip
2828
pip install .[dev]
2929
30-
- name: Run unit and integration tests
30+
- name: Run unit tests
3131
run: |
3232
pytest -m "not integration"
3333
34-
- name: Run integration tests (optional)
35-
run: |
36-
pytest -m integration
37-
if: ${{ always() }}
38-
3934
- name: Lint and format check (ruff)
4035
run: |
4136
ruff check .

0 commit comments

Comments
 (0)