We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4e060e commit c6a15d6Copy full SHA for c6a15d6
.github/workflows/debian-cran-check.yaml
@@ -20,11 +20,11 @@ jobs:
20
21
- name: Install package dependencies
22
run: |
23
- R -e 'install.packages(c("remotes", "rcmdcheck"), repos = "https://cloud.r-project.org")'
+ R -e 'install.packages("remotes", repos = "https://cloud.r-project.org")'
24
R -e 'remotes::install_deps(dependencies = TRUE)'
25
26
- name: Run R CMD check with --as-cran
27
28
cd ..
29
- R CMD build --no-manual BayesMallowsSMC2
30
- R CMD check --as-cran BayesMallowsSMC2*.tar.gz
+ R CMD build --no-manual ${GITHUB_REPOSITORY#*/}
+ R CMD check --as-cran ${GITHUB_REPOSITORY#*/}*.tar.gz
0 commit comments