From 3204467d427635a802f90b159a77533601db54c8 Mon Sep 17 00:00:00 2001 From: Avior Date: Wed, 25 Sep 2024 22:11:36 +0200 Subject: [PATCH] revert: automatic matrix --- .github/workflows/build.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a18ef6..a6cd8dd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,20 +10,11 @@ on: - master jobs: - create_matrix: - runs-on: ubuntu-latest - steps: - - id: matrix - uses: JLLeitschuh/endoflife-matrix-action@main - with: - product: python - outputs: - version_matrix: ${{ steps.matrix.outputs.versions }} build_and_test: strategy: fail-fast: false matrix: - python-version: ${{ fromJson(needs.create_matrix.outputs.version_matrix) }} + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] runs-on: ubuntu-latest steps: - name: Checkout