We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50342ba commit 33f0759Copy full SHA for 33f0759
.github/workflows/check-standard.yaml
@@ -1,5 +1,4 @@
1
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
2
-# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3
4
on:
5
push:
@@ -47,10 +46,14 @@ jobs:
47
46
print(getOption("repos"))
48
shell: Rscript {0}
49
+ # macOS-only: remove lockfile to prevent pak crash
50
+ - name: Remove pak lockfile (macOS workaround)
51
+ if: matrix.config.os == 'macOS-latest'
52
+ run: rm -f .github/pkg.lock
53
+
54
- uses: r-lib/actions/setup-r-dependencies@v2
55
with:
56
dependencies: '"all"'
- cache: ${{ matrix.config.os != 'macOS-latest' }}
57
extra-packages: |
58
rcmdcheck
59
rstan
0 commit comments