Skip to content

Commit

Permalink
Moved the check step back to where it was
Browse files Browse the repository at this point in the history
  • Loading branch information
Kemuk committed Jan 13, 2025
1 parent 220bb75 commit 13fa3c7
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,6 @@ jobs:
R: [ '4.1.0' ]

steps:
- name: Check
env:
_R_CHECK_CRAN_INCOMING_REMOTE_: false
run: |
options(crayon.enabled = TRUE)
rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "error", check_dir = "check")
shell: Rscript {0}
with:
r-version: ${{ matrix.R }}
Ncpus: 2
architecture: 'x64'
multiarch: false

- name: Checkout repository
uses: actions/checkout@v2

Expand Down Expand Up @@ -64,6 +51,18 @@ jobs:
remotes::install_cran("rcmdcheck")
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"), error_on = "error", check_dir = "check")
shell: Rscript {0}
with:
r-version: ${{ matrix.R }}
Ncpus: 2
architecture: 'x64'
multiarch: false

- name: Show testthat output
if: always()
Expand Down

0 comments on commit 13fa3c7

Please sign in to comment.