From 3fd9453ec7970d8229e5db9a1729c75d1876be0b Mon Sep 17 00:00:00 2001 From: Christian Grabowski Date: Tue, 10 Sep 2024 12:44:18 -0600 Subject: [PATCH] feat(ci): split out newer python versions for jammy --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d50e7a5..da2a927 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,14 +28,37 @@ jobs: run: | tox -e lint - test: - runs-on: ubuntu-22.04 + test-focal: + runs-on: ubuntu-20.04 strategy: matrix: python-version: - "3.6" - "3.7" - "3.8" + steps: + - name: Repository checkout + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies + run: | + pip install --upgrade pip tox codecov + + - name: Test + run: | + tox -e py3 + codecov + + test-jammy: + runs-on: ubuntu-22.04 + strategy: + matrix: + python-version: - "3.9" - "3.10" - "3.12"