From 9c3767b305952bc3c22e3f756f133cec65a42a10 Mon Sep 17 00:00:00 2001 From: "Eric R. Scott" Date: Fri, 4 Aug 2023 13:22:47 -0400 Subject: [PATCH] just run full check() --- .github/workflows/check-api-stability.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-api-stability.yaml b/.github/workflows/check-api-stability.yaml index 3b680fa..7257293 100644 --- a/.github/workflows/check-api-stability.yaml +++ b/.github/workflows/check-api-stability.yaml @@ -25,11 +25,12 @@ jobs: - uses: r-lib/actions/setup-r@v2 with: use-public-rspm: true - +#TODO: don't need to run full check() here. Probably only test() is fine - uses: r-lib/actions/setup-r-dependencies@v2 with: - extra-packages: any::testthat + extra-packages: any::rcmdcheck + needs: check - - name: run tests - run: | - testthat::test_local() \ No newline at end of file + - uses: r-lib/actions/check-r-package@v2 + with: + upload-snapshots: true \ No newline at end of file