From 3de4310d7d55064411f6454e8f499af3316f9e2f Mon Sep 17 00:00:00 2001 From: Scott Gigante Date: Thu, 6 Oct 2022 09:27:21 -0400 Subject: [PATCH] Test on python 3.9 and 3.10 Closes #118 --- .github/workflows/run_tests.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index e9ade57..084eeed 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -55,9 +55,11 @@ jobs: fail-fast: false matrix: config: - - {name: 'current', os: ubuntu-latest, python: '3.8' } - - {name: 'prev', os: ubuntu-latest, python: '3.7' } - - {name: 'old', os: ubuntu-latest, python: '3.6' } + - {name: '3.10', os: ubuntu-latest, python: '3.10' } + - {name: '3.9', os: ubuntu-latest, python: '3.9' } + - {name: '3.8', os: ubuntu-latest, python: '3.8' } + - {name: '3.7', os: ubuntu-latest, python: '3.7' } + - {name: '3.6', os: ubuntu-latest, python: '3.6' } steps: - name: Cancel Previous Runs