py3.7 actions

This commit is contained in:
James Woglom
2024-10-01 17:29:49 -04:00
parent 9a7cb1bdfd
commit 32f3639eb0
+6 -3
View File
@@ -11,10 +11,10 @@ on:
jobs:
build_old_python_versions:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7']
steps:
- uses: actions/checkout@v2
@@ -55,13 +55,16 @@ jobs:
- name: Run tconnectsync --help
run: |
tconnectsync --help
- name: Test with pytest
run: |
pytest
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2