Skip to content

Commit 43b6bb0

Browse files
committed
change github ci to use uv
1 parent bd8ab15 commit 43b6bb0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/pyci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ jobs:
1313
python-version: [3.8, 3.9]
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v4
16+
- name: Set up Python
17+
uses: actions/setup-python@v5
1818
with:
19-
python-version: ${{ matrix.python-version }}
20-
# make depends on poetry
19+
python-version: '3.12'
20+
# make depends on uv
2121
- name: Install dependencies
2222
run: |
23-
pip install poetry
23+
pip install uv
2424
make install
2525
- name: Run linter and pytest
2626
run: |
2727
make check
2828
- name: Test & publish code coverage
29-
uses: paambaati/codeclimate-action@v5.0.0
29+
uses: paambaati/codeclimate-action@v9.0.0
3030
if: github.ref_name == 'main'
3131
env:
3232
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}

0 commit comments

Comments
 (0)