From 49003393f4e4d5a7198a07be3874ab2adf519d0e Mon Sep 17 00:00:00 2001 From: Christoph Sax Date: Mon, 3 Nov 2025 23:30:37 +0100 Subject: [PATCH 1/2] fix2 --- .github/workflows/smoke-test.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/smoke-test.yaml b/.github/workflows/smoke-test.yaml index 9220635..678079e 100644 --- a/.github/workflows/smoke-test.yaml +++ b/.github/workflows/smoke-test.yaml @@ -29,14 +29,11 @@ jobs: - uses: r-lib/actions/setup-r-dependencies@v2 with: - extra-packages: any::testthat, local::. - needs: test - cache-version: 2 + extra-packages: any::devtools + needs: check - name: Run smoke tests shell: Rscript {0} run: | - # Run all tests on single platform for quick validation - library(testthat) - library(tempdisagg) - test_dir("tests/testthat", reporter = "progress") + # Run full package check on single platform for quick validation + devtools::check(error_on = "warning") From 9cb01f7be5832f96f5649cbb88b27ae608625d7a Mon Sep 17 00:00:00 2001 From: Christoph Sax Date: Mon, 3 Nov 2025 23:32:09 +0100 Subject: [PATCH 2/2] as cran --- .github/workflows/smoke-test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/smoke-test.yaml b/.github/workflows/smoke-test.yaml index 678079e..728fbc6 100644 --- a/.github/workflows/smoke-test.yaml +++ b/.github/workflows/smoke-test.yaml @@ -36,4 +36,5 @@ jobs: shell: Rscript {0} run: | # Run full package check on single platform for quick validation - devtools::check(error_on = "warning") + # Use --as-cran to match R-CMD-check strictness + devtools::check(args = c("--no-manual", "--as-cran"), error_on = "warning")