We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0716371 commit f3210a5Copy full SHA for f3210a5
.github/workflows/check-standard.yaml
@@ -44,7 +44,19 @@ jobs:
44
if: ${{ runner.os == 'macOS' }}
45
run: Rscript -e 'install.packages("QuickJSR", type = "source")'
46
47
- - uses: r-lib/actions/setup-r-dependencies@v2
+ # Setup dependencies with exclusion on macOS
48
+ - name: Setup R dependencies (macOS-specific)
49
+ if: ${{ runner.os == 'macOS' }}
50
+ uses: r-lib/actions/setup-r-dependencies@v2
51
+ with:
52
+ extra-packages: any::rcmdcheck
53
+ needs: check
54
+ exclude: QuickJSR
55
+
56
+ # Setup dependencies normally on other OSs
57
+ - name: Setup R dependencies (non-macOS)
58
+ if: ${{ runner.os != 'macOS' }}
59
60
with:
61
extra-packages: any::rcmdcheck
62
needs: check
0 commit comments