Skip to content

Commit 5cabfb9

Browse files
committed
update CI
1 parent 448fdbf commit 5cabfb9

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
14+
python-version: ["3.12"]
1515

1616
steps:
1717
- name: checkout xcube-clms
@@ -25,24 +25,16 @@ jobs:
2525
run: echo "$HOME/.pixi/bin" >> $GITHUB_PATH
2626

2727
- name: Set up Python ${{ matrix.python-version }}
28-
run: pixi project python ${{ matrix.python-version }}
28+
run: pixi add python=${{ matrix.python-version }} --no-install
2929

3030
- name: Install dependencies
31-
shell: bash -l {0}
3231
run: pixi install
3332

3433
- name: Linting with ruff
35-
shell: bash -l {0}
3634
run:
3735
pixi run check
3836

39-
- name: Typecheck with mypy
40-
shell: bash -l {0}
41-
run:
42-
pixi run typecheck
43-
4437
- name: Install and Test
45-
shell: bash -l {0}
4638
run:
4739
pixi run test
4840

@@ -51,6 +43,8 @@ jobs:
5143
with:
5244
verbose: true
5345
token: ${{ secrets.CODECOV_TOKEN }}
46+
47+
5448
PyPi-Deploy:
5549
name: Publish Python Package to PyPI
5650
runs-on: ubuntu-latest

.github/workflows/unittest.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.12", "3.13" ]
12+
python-version: ["3.12"]
1313

1414
steps:
1515
- name: checkout xcube-clms
@@ -32,10 +32,6 @@ jobs:
3232
run:
3333
pixi run check
3434

35-
- name: Typecheck with mypy
36-
run:
37-
pixi run typecheck
38-
3935
- name: Install and Test
4036
run:
4137
pixi run test

0 commit comments

Comments
 (0)