Skip to content

Commit

Permalink
ci: using environment variables to define build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlangrose authored Jan 18, 2024
1 parent 3d48fba commit 598d82e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest"] # , "macos-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: ${{ fromJSON(vars.BUILD_OS)}}
python-version: ${{ fromJSON(vars.PYTHON_VERSIONS)}}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
Expand Down Expand Up @@ -59,8 +59,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest"] # , "macos-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: ${{ fromJSON(vars.BUILD_OS)}}
python-version: ${{ fromJSON(vars.PYTHON_VERSIONS)}}
steps:
- uses: conda-incubator/setup-miniconda@v2
with:
Expand Down

0 comments on commit 598d82e

Please sign in to comment.