Skip to content

Commit 2198fab

Browse files
committed
Move Miniconda env out of config
1 parent cbcb918 commit 2198fab

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,22 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
config:
21-
- {os: macOS-latest, r: 'devel', miniconda: '../miniconda/'}
22-
- {os: macOS-latest, r: 'release', miniconda: '../miniconda/'}
21+
- {os: macOS-latest, r: 'devel'}
22+
- {os: macOS-latest, r: 'release'}
2323
- {os: windows-latest, r: 'release'}
2424
- {os: windows-latest, r: '3.6'}
2525
- {os: ubuntu-16.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
2626
- {os: ubuntu-16.04, r: 'oldrel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
2727
- {os: ubuntu-16.04, r: '3.5', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
28+
include:
29+
- os: macOS-latest
30+
miniconda: '../miniconda/'
2831

2932
env:
3033
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
3134
RSPM: ${{ matrix.config.rspm }}
3235
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
33-
RETICULATE_MINICONDA_PATH: ${{ matrix.config.miniconda }}
36+
RETICULATE_MINICONDA_PATH: ${{ matrix.miniconda }}
3437

3538
steps:
3639
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)