-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
79 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,46 @@ | ||
## Summary | ||
|
||
<!--- Why is this change required? What problem does it solve? --> | ||
|
||
Motivation: | ||
|
||
<!--- List all new functionality with high level descriptions. --> | ||
|
||
Changes: | ||
- First change | ||
- Second change | ||
|
||
<!--- Please link to an existing issue here if one exists. --> | ||
|
||
Fixes # (issue) | ||
|
||
## Test plan | ||
|
||
<!--- Please describe here how your modifications have been tested. --> | ||
<!--- What command line was used to run or test your change? --> | ||
<!--- Provide learning curves if you tested the change with training models. --> | ||
|
||
Screenshot of before versus after: <img> | ||
|
||
Link to wandb report: <URL> | ||
|
||
## Type of change | ||
|
||
- [ ] Documentation only change | ||
- [ ] Bug fix (non-breaking change that fixes an issue) | ||
- [ ] Refactor (non-breaking change that isn't a bug) | ||
- [ ] New feature (non-breaking change that adds a new functionality) | ||
- [ ] Breaking change (fix or feature that would break some existing functionality downstream) | ||
|
||
## Type of requested review | ||
|
||
- [ ] I want a high level review. | ||
- [ ] I want a design review. | ||
- [ ] I want a review of the implementation. | ||
|
||
## Checklist: | ||
|
||
- [ ] I have performed manual end-to-end testing of the feature in my environment. | ||
- [ ] I have added tests that show that the PR is functional. | ||
- [ ] I have documented my changes. | ||
- [ ] I have added relevant collaborators to review the PR before merge. |
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,33 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.7 | ||
|
||
- name: Install Python dependencies | ||
run: pip install black | ||
|
||
- name: Run linters | ||
uses: wearerequired/lint-action@v2 | ||
with: | ||
auto_fix: true | ||
black: true | ||
black_auto_fix: true | ||
git_name: "Lint Action" | ||
git_email: "[email protected]" | ||
|