Skip to content

Commit

Permalink
#105 upload if fail, check XLConnect pkg file
Browse files Browse the repository at this point in the history
  • Loading branch information
spoltier committed Dec 3, 2020
1 parent b034cf0 commit 975fb78
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,13 @@ jobs:
FULL_TEST_SUITE: 1
run: |
R CMD build --no-build-vignettes
R CMD check XLConnect*tar.gz --no-manual --as-cran --no-build-vignettes
ls XLConnect_*.tar.gz | xargs R CMD check --no-manual --as-cran --no-build-vignettes
# run: rcmdcheck::rcmdcheck(args = c("--no-manual"), error_on = "error")
# shell: Rscript {0}
- name: Upload check results
if: failure()
uses: actions/upload-artifact@main
with:
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
path: check

0 comments on commit 975fb78

Please sign in to comment.