diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 173482933a6..348347a9794 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -4,22 +4,16 @@ on: [push, pull_request] jobs: lint-python: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - python-version: [ "3.9", "3.10", "3.11"] - os: [ ubuntu-latest ] + runs-on: [ubuntu-latest] env: - OS: ${{ matrix.os }} - PYTHON: ${{ matrix.python-version }} + PYTHON: 3.11 steps: - uses: actions/checkout@v4 - name: Setup Python id: setup-python uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} + python-version: "3.11" architecture: x64 - name: Install the latest version of uv uses: astral-sh/setup-uv@v5