From 2a06b053724915379ea134d4d9aca09eedef8e0c Mon Sep 17 00:00:00 2001 From: Tommy Hughes Date: Fri, 4 Apr 2025 12:19:08 -0500 Subject: [PATCH] ci: Revert matrix changes to linter gh action Signed-off-by: Tommy Hughes --- .github/workflows/linter.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) 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