Skip to content

Commit

Permalink
Add matrix for os for caching example
Browse files Browse the repository at this point in the history
  • Loading branch information
goanpeca committed Nov 11, 2022
1 parent 9a93a94 commit 9c56da3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/caching-envs-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,17 @@ jobs:
(github.event_name == 'schedule' && github.repository ==
'conda-incubator/setup-miniconda') || (github.event_name != 'schedule')

runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
label: linux-64
- os: macos-latest
label: osx-64
- os: windows-latest
label: win-64

runs-on: ${{ matrix.label }}
steps:
- uses: actions/checkout@v2

Expand Down

0 comments on commit 9c56da3

Please sign in to comment.