Skip to content

Commit

Permalink
Fixed quotation error in windows yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kemuk committed Nov 1, 2024
1 parent 9e7d85f commit e350ec6
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ jobs:
test:
name: tests on Windows with R ${{ matrix.R }}
runs-on: windows-latest
env:
R_ARCH: x64
R_CHECK_SKIP_ARCH_CHECK: true
_R_CHECK_CRAN_INCOMING_REMOTE_: false
_R_CHECK_FORCE_SUGGESTS_: false
_R_CHECK_SYSTEM_CLOCK_: false
NOT_CRAN: true
_R_CHECK_INSTALL_ARCH_: false
R_INSTALL_ARG: --no-multiarch
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -52,11 +61,9 @@ jobs:
shell: Rscript {0}

- name: Check
env:
_R_CHECK_CRAN_INCOMING_REMOTE_: false
run: |
options(crayon.enabled = TRUE)
rcmdcheck::rcmdcheck(args = c(--no-manual”, “--as-cran”, “--no-multiarch), error_on = error, check_dir = check)
rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran", "--no-multiarch"), error_on = "error", check_dir = "check")
shell: Rscript {0}

- name: Show testthat output
Expand Down

0 comments on commit e350ec6

Please sign in to comment.