-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add coding norms test * update requirements * add badge to readme Co-authored-by: danholdaway <[email protected]>
- Loading branch information
1 parent
2a8499b
commit 3c08671
Showing
6 changed files
with
57 additions
and
3 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,29 @@ | ||
## Description | ||
|
||
*(Instructions: replace text in this and all sections with your own text)* | ||
|
||
Provide a detailed description of what this PR does. | ||
|
||
What problem does it fix? What new capability does it add? | ||
|
||
### Issue(s) addressed | ||
|
||
- fixes #<issue_number> | ||
|
||
## Acceptance Criteria (Definition of Done) | ||
|
||
What does it mean for this PR to be finished? | ||
|
||
## Dependencies | ||
|
||
If there are PRs that need to be merged before or along with this one, please list them below | ||
Waiting on the following PRs: | ||
- [ ] waiting on org/repo/pull/<pr_number> | ||
- [ ] waiting on org/repo/pull/<pr_number> | ||
|
||
## Impact | ||
|
||
Please list the other repositories (if any) that this PR will require changes in (example below) | ||
|
||
- [ ] repo | ||
- [ ] ... |
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: Coding Norms | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
pycodestyle: | ||
name: Check Python Coding Norms | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
cache: 'pip' | ||
- run: pip install -r requirements.txt | ||
- run: python3 pycodestyle_run.py |
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
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,4 @@ | ||
pyyaml>=5.4 | ||
pycodestyle>=2.8.0 | ||
netCDF4>=1.5.7 | ||
matplotlib>=3.4.3 |
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
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