From b2d9de29975f38445fc4af1db04e087fad733f98 Mon Sep 17 00:00:00 2001 From: Andrew-Chen-Wang Date: Tue, 4 Apr 2023 15:30:23 -0400 Subject: [PATCH] Fix CI supported versions --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04eeaa0..c0e7e2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,10 @@ on: pull_request: branches: [ master ] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: build: runs-on: ubuntu-latest @@ -15,6 +19,10 @@ jobs: python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] django-version: ['3.2', '4.1', '4.2'] exclude: + - python-version: '3.11' + django-version: '3.2' + - python-version: '3.11' + django-version: '4.1' - python-version: '3.7' django-version: '4.1' - python-version: '3.7'