diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/macos_unit_tests.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/macos_unit_tests.yaml b/.github/workflows/macos_unit_tests.yaml index d8e5e631b6..22baac3608 100644 --- a/.github/workflows/macos_unit_tests.yaml +++ b/.github/workflows/macos_unit_tests.yaml @@ -12,13 +12,16 @@ on: jobs: build: runs-on: macos-latest + strategy: + matrix: + python-version: [3.8, 3.9] steps: - uses: actions/checkout@v2 with: fetch-depth: 0 - uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: ${{ matrix.python-version }} - name: Install Python packages run: | pip install --upgrade pip six setuptools |