Address issue #6 rework env set/unset and install to implement global installation of Java for all R sessions #13
Workflow file for this run
This file contains 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: pkgcheck | |
# This will cancel running jobs once a new run is triggered | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
# Manually trigger the Action under Actions/pkgcheck | |
workflow_dispatch: | |
# Run on every push to main | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
pkgcheck: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: ropensci-review-tools/pkgcheck-action@main |