fix: stats19 v4 column rename + dodgr R 4.6 build fix #242
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull Request Checks | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-check: | |
| runs-on: ubuntu-latest | |
| env: | |
| GDAL_HTTP_MAX_RETRY: 5 | |
| GDAL_HTTP_RETRY_DELAY: 2 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Quarto | |
| uses: quarto-dev/quarto-actions/setup@v2 | |
| - name: Install R | |
| uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: '4.4.1' | |
| use-public-rspm: true | |
| - name: Install R Dependencies | |
| uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| cache-version: 2 | |
| - name: Additional Setup | |
| run: | | |
| # Install Python: | |
| sudo apt-get update | |
| sudo apt-get install python3 | |
| sudo apt-get install python3-pip | |
| python3 -m pip install jupyter jupyter-cache | |
| - name: Build Quarto Project | |
| run: | | |
| # Retry Quarto rendering up to 3 times to handle transient 504 redirect errors | |
| for i in {1..3}; do | |
| if quarto render; then | |
| exit 0 | |
| fi | |
| echo "Quarto render failed (attempt $i/3), retrying in 10 seconds..." | |
| sleep 10 | |
| done | |
| exit 1 |