Skip to content

Commit ef75d0e

Browse files
committed
fix call to matrix.os
1 parent b2f0dcb commit ef75d0e

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
.circleci/
2+
^.*\.Rproj$
3+
^\.Rproj\.user$

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
which R
4848
R --version
4949
- name: Configuration Information (Windows)
50-
if: startsWith(matrix.config.os, 'windows')
50+
if: startsWith(matrix.os, 'windows')
5151
shell: pwsh
5252
run: |
5353
New-Item -ItemType Directory -Force -Path "$env:R_LIBS" | Out-Null
@@ -60,7 +60,7 @@ jobs:
6060
run: |
6161
R -e "install.packages(c('remotes'), lib=c('${R_LIBS}'), repo='https://cloud.r-project.org/')"
6262
- name: Install R packages (Windows)
63-
if: startsWith(matrix.config.os, 'windows')
63+
if: startsWith(matrix.os, 'windows')
6464
shell: pwsh
6565
run: |
6666
Rscript -e "lib <- Sys.getenv('R_LIBS'); lib <- normalizePath(lib, winslash='/', mustWork=FALSE); dir.create(lib, recursive=TRUE, showWarnings=FALSE); install.packages('remotes', lib=lib, repos='https://cloud.r-project.org/')"
@@ -73,7 +73,7 @@ jobs:
7373
env:
7474
ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS: 2
7575
- name: Build and test (Windows)
76-
if: startsWith(matrix.config.os, 'windows')
76+
if: startsWith(matrix.os, 'windows')
7777
shell: pwsh
7878
env:
7979
ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS: 2

0 commit comments

Comments
 (0)