We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fafd9de commit 922b27bCopy full SHA for 922b27b
1 file changed
.github/workflows/test-smokes.yml
@@ -142,6 +142,16 @@ jobs:
142
env:
143
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
144
145
+ - name: Show R session information
146
+ working-directory: tests
147
+ run: |
148
+ # Session info
149
+ cat("::group::Session info\n")
150
+ renv::install("sessioninfo")
151
+ sessioninfo::session_info(pkgs = "installed", include_base = TRUE)
152
+ cat("::endgroup::\n")
153
+ shell: Rscript {0}
154
+
155
- name: Install uv for Python
156
uses: astral-sh/setup-uv@v3
157
with:
0 commit comments