From def3e3b478ec269ba50974543a51522fa5526182 Mon Sep 17 00:00:00 2001 From: Rob Wiederstein Date: Sun, 22 Feb 2026 20:21:21 -0500 Subject: [PATCH] Add styler dependency to deploy job --- .gitea/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index feca96f..1972b18 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -36,7 +36,7 @@ jobs: # First install 'renv' or 'remotes', then install project dependencies # Using remotes here as it's typically faster for CI if renv cache isn't available run: | - Rscript -e "install.packages('remotes')" + Rscript -e "install.packages(c('remotes', 'styler'))" Rscript -e "remotes::install_deps(dependencies = TRUE)" - name: Run Build Script