Skip to content

Commit

Permalink
Add .github dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaireLC committed Mar 4, 2024
1 parent d2a4417 commit 93cc2df
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/pull_request_template.md
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.
33 changes: 33 additions & 0 deletions .github/workflows/lint.yml
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]"

0 comments on commit 93cc2df

Please sign in to comment.