From 7f25dbdabfa0fe9af65478b5b0bf0bdcb037cf5d Mon Sep 17 00:00:00 2001 From: Sanjay Joshi Date: Tue, 30 Apr 2024 10:31:39 -0400 Subject: [PATCH] test python 3.8 to 3.11 --- .github/workflows/tester.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index f58abb8..5791056 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -5,14 +5,20 @@ on: jobs: launch-unit-tests: runs-on: ubuntu-latest + strategy: + matrix: + # Tracked via issue #77 + # 3.6: Not available on ubuntu-22.04 + # 3.7: Results in failures in `test_cli.py` + # 3.12: pkg_resources not supported + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 with: - python-version: '3.11.3' - cache: 'pip' - cache-dependency-path: setup.py + python-version: ${{ matrix.python-version }} - run: python -m venv env - run: source env/bin/activate - run: env/bin/pip install -e .