Testing #2
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
| # Note that the workflows below use Powershell (pwsh) as they were originally written for Windows runners. | |
| name: Rtools & ARM64 CI | |
| on: | |
| pull_request: | |
| branches: [ develop, master ] | |
| push: | |
| branches: [ develop, winarm ] | |
| paths-ignore: | |
| - 'doygen/**' | |
| - 'hooks/**' | |
| - 'licenses/**' | |
| - 'LICENSE.md' | |
| - 'README.md' | |
| - 'RELEASE-NOTES.txt' | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| prim-rev: | |
| name: Test | |
| runs-on: windows-11-arm | |
| steps: | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: 'devel' | |
| install-r: false | |
| windows-path-include-rtools: true |