From 7b30e5a27792e930b5f59ed5ee4839857225cf19 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Mon, 15 Jul 2024 13:07:46 -0400 Subject: [PATCH] cicd: only lint in 3.11 --- .github/workflows/checks.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index f0b06cdc..bc119291 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -42,16 +42,13 @@ jobs: AWS_SECRET_ACCESS_KEY: ${{ secrets.DUMMY_AWS_SECRET_ACCESS_KEY }} AWS_DEFAULT_REGION: us-east-2 AWS_DEFAULT_OUTPUT: text - strategy: - matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Setup Python uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: "3.11" - name: Install dependencies run: python3 -m pip install ".[dev]"