Bump libtopotoolbox version to 2026-W09 #122
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: CI | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| push: | |
| branches: ["main"] | |
| jobs: | |
| build-and-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Install dependencies on macos | |
| if: matrix.os == 'macos-latest' | |
| run: brew install gdal proj | |
| - name: Set PROJ_DATA | |
| if: matrix.os == 'macos-latest' | |
| run: | | |
| echo "PROJ_DATA=$(brew --prefix proj)/share/proj" >> "$GITHUB_ENV" | |
| - name: Set up R | |
| uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: release | |
| - name: Install dependencies | |
| uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| extra-packages: any::rcmdcheck | |
| - name: Build and check | |
| uses: r-lib/actions/check-r-package@v2 |