Skip to content

Commit 478d3c7

Browse files
committed
[core] bumped python testing version and enabled verbose logging
1 parent f75213d commit 478d3c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.11", "3.12", "3.13"]
16+
python-version: ["3.11", "3.12", "3.13", "3.14"]
1717

1818
steps:
1919
- uses: actions/checkout@v4
@@ -23,7 +23,7 @@ jobs:
2323
python-version: ${{ matrix.python-version }}
2424

2525
- name: Build and install package
26-
run: python -m pip install .[all]
26+
run: python -m pip install .[all] --verbose
2727

2828
- name: Test with pytest
2929
run: |
@@ -44,14 +44,14 @@ jobs:
4444
- name: Setup Python
4545
uses: actions/setup-python@v5
4646
with:
47-
python-version: 3.13
47+
python-version: 3.14
4848

4949
- name: Build and install package
5050
run: python -m pip install .[all]
5151

5252
- name: Running ${{ matrix.tool }}
5353
run: |
5454
python -m pip install --upgrade pip
55-
python -m pip install --group linting
55+
python -m pip install --group linting --verbose
5656
python -c "print('=========== ${{ matrix.tool }} ===========')"
5757
python -m ${{ matrix.tool }} src/ tests/

0 commit comments

Comments
 (0)