diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-11-15 22:33:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 22:33:11 +0100 |
commit | 472893c5c40b949bcea68c6640d6194ec9d91543 (patch) | |
tree | aa80d279a248e173c5712234f1c545c6e89fd69e /.github/workflows | |
parent | 289bbf74f6a010f7447fa1158a700a1951251789 (diff) | |
download | spack-472893c5c40b949bcea68c6640d6194ec9d91543.tar.gz spack-472893c5c40b949bcea68c6640d6194ec9d91543.tar.bz2 spack-472893c5c40b949bcea68c6640d6194ec9d91543.tar.xz spack-472893c5c40b949bcea68c6640d6194ec9d91543.zip |
Run Python 3.6 unit tests on ubuntu-20.04 (#33918)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/unit_tests.yaml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 4526071c89..5b33b40f64 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -11,28 +11,38 @@ concurrency: jobs: # Run unit tests with different configurations on linux ubuntu: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.6.15', '3.7', '3.8', '3.9', '3.10', '3.11'] + os: [ubuntu-latest] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] concretizer: ['clingo'] on_develop: - ${{ github.ref == 'refs/heads/develop' }} include: - python-version: '3.11' + os: ubuntu-latest concretizer: original on_develop: ${{ github.ref == 'refs/heads/develop' }} + - python-version: '3.6' + os: ubuntu-20.04 + concretizer: clingo + on_develop: ${{ github.ref == 'refs/heads/develop' }} exclude: - python-version: '3.7' + os: ubuntu-latest concretizer: 'clingo' on_develop: false - python-version: '3.8' + os: ubuntu-latest concretizer: 'clingo' on_develop: false - python-version: '3.9' + os: ubuntu-latest concretizer: 'clingo' on_develop: false - python-version: '3.10' + os: ubuntu-latest concretizer: 'clingo' on_develop: false |