We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5fe56b commit 8b5cb88Copy full SHA for 8b5cb88
1 file changed
.github/workflows/R-CMD-check.yaml
@@ -41,13 +41,19 @@ jobs:
41
sudo apt-get update
42
sudo apt-get install -y libproj-dev
43
sudo apt-get install -y libgdal-dev
44
+ sudo apt-get install -y libssl-dev
45
46
- name: Install system dependencies (macOS)
47
if: runner.os == 'macOS'
48
run: |
49
brew install gettext
50
brew link --force gettext
51
52
+ - name: Install system dependencies (Windows)
53
+ if: runner.os == 'Windows'
54
+ run: |
55
+ choco install openssl
56
+
57
- uses: r-lib/actions/setup-r@v2
58
with:
59
use-public-rspm: true
0 commit comments