From e1e9fad1e3f7b7e793c05abdceeb3e5c809ac602 Mon Sep 17 00:00:00 2001 From: James J Balamuta Date: Tue, 25 Oct 2022 13:58:49 -0700 Subject: [PATCH] Let's try with the old check routine --- .github/workflows/main.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d2b5274bd9..ffb1f9b8cd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -146,6 +146,14 @@ jobs: remotes::install_cran("rcmdcheck") shell: Rscript {0} - - uses: r-lib/actions/check-r-package@v2 + - name: Check + run: Rscript -e "rcmdcheck::rcmdcheck('${{ needs.jobR.outputs.r_bindings }}', args = c('--no-manual','--as-cran'), error_on = 'warning', check_dir = 'check')" + + - name: Upload check results + if: failure() + uses: actions/upload-artifact@v3 with: - upload-snapshots: true + name: ${{ runner.os }}-r${{ matrix.config.r }}-results + path: | + check/mlpack.Rcheck/00check.log + check/mlpack.Rcheck/00install.out