Skip to content

Commit

Permalink
Merge pull request #122 from bodkan/ga-windows-setup
Browse files Browse the repository at this point in the history
Use NOT_CRAN=false on Windows-based GitHub Actions
  • Loading branch information
bodkan authored Feb 2, 2023
2 parents 64244e1 + d0170ca commit 8ed47fa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: "Test Windows as if on CRAN"
- name: Set NOT_CRAN=false on Windows
if: runner.os == 'Windows'
run:
echo "NOT_CRAN='false'" >> ~/.Renviron
run: |
echo "NOT_CRAN=false" >> $GITHUB_ENV
shell: bash

- name: Install rgdal dependencies (macOS)
if: runner.os == 'macOS'
Expand Down

0 comments on commit 8ed47fa

Please sign in to comment.