Skip to content

Commit 9858f6b

Browse files
committed
chore: remove test matrix
We don't have tests besides linting, which does not depend on the installed Python version
1 parent 918fcca commit 9858f6b

1 file changed

Lines changed: 1 addition & 15 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,17 @@
1-
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3-
41
name: Check
52

63
on: [push, pull_request]
74

85
jobs:
96
build:
10-
117
runs-on: ubuntu-latest
12-
strategy:
13-
fail-fast: false
14-
matrix:
15-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
16-
178
steps:
189
- uses: actions/checkout@v4
19-
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v5
21-
with:
22-
python-version: ${{ matrix.python-version }}
2310
- name: Install uv & Python
2411
uses: astral-sh/setup-uv@v6
2512
with:
2613
enable-cache: true
2714
cache-dependency-glob: "uv.lock"
28-
python-version: ${{ matrix.python-version }}
29-
- name: Black source code formating check
15+
python-version-file: "pyproject.toml"
3016
run: |
3117
uv run black --check .

0 commit comments

Comments
 (0)