Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/smoke-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,12 @@ 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
# Use --as-cran to match R-CMD-check strictness
devtools::check(args = c("--no-manual", "--as-cran"), error_on = "warning")