From 471bae22e82273206a23262b6b518ecbfd505d84 Mon Sep 17 00:00:00 2001 From: Danyal-Faheem Date: Tue, 5 Mar 2024 15:00:30 +0500 Subject: [PATCH] ci: add python 3.12 checks resolved merge conflicts rebased this branch to overhangio master branch from edly-io master branch --- .github/workflows/test.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 829f613..5671b62 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,12 +7,15 @@ on: jobs: tests: runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['3.8', '3.12'] steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.8 - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: ${{ matrix.python-version }} - name: Upgrade pip run: python -m pip install --upgrade pip setuptools - name: Install dependencies