From 645f0efa03fb3b2837a378566694561d4a32f4a0 Mon Sep 17 00:00:00 2001 From: Zia Fazal Date: Wed, 27 Mar 2024 10:18:17 +0500 Subject: [PATCH] feat: add multipel os and python versions --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af09468..32064a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,14 +14,14 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04] - python-version: ['3.8'] + os: [ubuntu-20.04, ubuntu-latest] + python-version: ['3.8', '3.12'] toxenv: [quality, django32, django40] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: setup python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }}