Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lightbluetitan authored Sep 10, 2024
1 parent 434c5c7 commit 3ccd4ac
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
name: R-CMD-check

on: [push, pull_request]

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}
Expand All @@ -15,11 +19,12 @@ jobs:
with:
use-public-rspm: true

- name: Install R package dependencies
- name: Install dependencies
run: |
Rscript -e 'install.packages("remotes")'
Rscript -e 'remotes::install_deps(dependencies = TRUE)'
- name: Check
run: R.exe CMD check .
shell: pwsh
run: |
R CMD build .
R CMD check --as-cran timeseriesdatasets_*.tar.gz

0 comments on commit 3ccd4ac

Please sign in to comment.