Skip to content

Commit

Permalink
test python 3.8 to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
smjoshiatglobus committed Apr 30, 2024
1 parent 6dd7343 commit 7f25dbd
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down

0 comments on commit 7f25dbd

Please sign in to comment.