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: jobs:
build_old_python_versions: build_old_python_versions:
runs-on: ubuntu-latest runs-on: ubuntu-20.04
strategy: strategy:
matrix: matrix:
python-version: ['3.7', '3.8', '3.9', '3.10'] python-version: ['3.7']
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -55,13 +55,16 @@ jobs:
- name: Run tconnectsync --help - name: Run tconnectsync --help
run: | run: |
tconnectsync --help tconnectsync --help
- name: Test with pytest
run: |
pytest
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ['3.11'] python-version: ['3.8', '3.9', '3.10', '3.11']
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2