From 6d2d3cc79f8df6ad6eb64bbe116c87c3ddec7c42 Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Mon, 18 Sep 2023 20:34:04 -0400 Subject: [PATCH] Update the test workflow. 1. Use Ubuntu 22.04. 2. Remove Python 2.7 and 3.6 (they are no longer supported) 3. Add Python 3.11. Signed-off-by: Chris Lalancette --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d80ebca4..22a2a259 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,14 +11,14 @@ on: jobs: unit_tests: name: Unit Tests - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: - python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: 'true'