added matrix

This commit is contained in:
Schmieder, Jacob
2024-05-16 11:49:18 +00:00
parent 74eaefa47c
commit 7cf078ed60
+6 -2
View File
@@ -32,11 +32,14 @@ jobs:
name: Test Installation from TestPyPI
needs: Build-and-publish-to-Test-PyPI
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.10, 3.11, 3.12]
steps:
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
which python3
@@ -44,6 +47,7 @@ jobs:
python3 -m pip install setuptools
python3 -m pip install --index-url https://test.pypi.org/simple/ scraibe
# publish-to-pypi:
# name: Conditional Publish to PyPI or Dev Repository
# needs: [build, test-install]