-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(pull-request): Add pull request template and automatic dry run b…
…uilds (#117)
- Loading branch information
tonywu1999
authored
Mar 15, 2024
1 parent
ca132cf
commit 7080ddc
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Motivation and Context | ||
|
||
Please include relevant motivation and context of the problem along with a short summary of the solution. | ||
|
||
## Changes | ||
|
||
Please provide a detailed bullet point list of your changes. | ||
|
||
- | ||
|
||
## Testing | ||
|
||
Please describe any unit tests you added or modified to verify your changes. | ||
|
||
## Checklist Before Requesting a Review | ||
- [ ] I have read the MSstats [contributing guidelines](https://github.com/Vitek-Lab/MSstatsConvert/blob/master/.github/CONTRIBUTING.md) | ||
- [ ] My changes generate no new warnings | ||
- [ ] Any dependent changes have been merged and published in downstream modules |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Dry runs for PRs | ||
on: | ||
pull_request: | ||
branches: [devel] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Setup R and Bioconductor | ||
uses: grimbough/bioc-actions/setup-bioc@v1 | ||
with: | ||
bioc-version: release | ||
- name: Install dependencies | ||
uses: r-lib/actions/setup-r-dependencies@v2 | ||
- name: Build, Install, Check | ||
uses: grimbough/bioc-actions/build-install-check@v1 |