diff --git a/.github/workflows/caching-envs-example.yml b/.github/workflows/caching-envs-example.yml index bc8e5396..266349d8 100644 --- a/.github/workflows/caching-envs-example.yml +++ b/.github/workflows/caching-envs-example.yml @@ -22,6 +22,10 @@ jobs: (github.event_name == 'schedule' && github.repository == 'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') + strategy: + matrix: + os: ["ubuntu-latest", "macos-latest", "windows-latest"] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2