Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
0df8583
Update README.md
nbashir97 Jul 23, 2022
7bc7075
Update info.md
nbashir97 Jul 23, 2022
62d82f6
Update info.md
nbashir97 Jul 23, 2022
02003b6
Create info.md
nbashir97 Jul 23, 2022
461f938
Add files via upload
nbashir97 Jul 23, 2022
72d55e8
Delete tests.py
nbashir97 Jul 23, 2022
8236e9e
Rename info.md to README.md
nbashir97 Jul 23, 2022
17c1e0e
Update and rename info.md to README.md
nbashir97 Jul 23, 2022
8a96897
Update README.md
nbashir97 Jul 23, 2022
51c6d64
Update README.md
nbashir97 Jul 23, 2022
8247aff
Update README.md
nbashir97 Jul 24, 2022
eb543f0
Update README.md
nbashir97 Jul 24, 2022
bbecaf5
Update README.md
nbashir97 Jul 24, 2022
51fe964
Update README.md
nbashir97 Jul 24, 2022
a03e4ff
Update README.md
nbashir97 Jul 24, 2022
df70a80
Update README.md
nbashir97 Jul 24, 2022
9af82b2
Update README.md
nbashir97 Jul 25, 2022
934778f
Update README.md
nbashir97 Jul 25, 2022
b647fe0
Update unit_tests.py
nbashir97 Jul 27, 2022
bfed72b
Update README.md
nbashir97 Jul 29, 2022
0cccf3b
Update README.md
nbashir97 Jul 29, 2022
87923d4
Update nhanes_examples.py
nbashir97 Jul 29, 2022
de1d6ec
Update main_tests.py
nbashir97 Jul 29, 2022
cf0e3c1
Update README.md
nbashir97 Jul 29, 2022
0378bd6
Update nhanes_examples.py
nbashir97 Jul 29, 2022
557d768
Update README.md
nbashir97 Jul 31, 2022
7752842
Update README.md
nbashir97 Jul 31, 2022
9618170
Create BUG-REPORT.yml
nbashir97 Aug 22, 2022
e198ffe
Create config.yml
nbashir97 Aug 22, 2022
0b77508
Create FEATURE-REQUEST.yml
nbashir97 Aug 22, 2022
fe44d2d
Create CONTRIBUTING.md
nbashir97 Aug 22, 2022
0bb3c47
Create PULL-REQUEST-TEMPLATE.md
nbashir97 Aug 22, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Contributing

## Request for changes/ Pull Requests
You first need to create a fork of the [effectsize][effectsize] repository to commit your changes to it. Methods to fork a repository can be found in the [GitHub Documentation][fork].

Then add your fork as a local project:

```sh
# Using HTTPS
git clone https://github.com/nbashir97/effectsize.git

# Using SSH
git clone git@github.com:nbashir97/effectsize
```

> [Which remote URL should be used ?][remote]

Then, go to your local folder

```sh
cd effectsize
```

Add git remote controls :

```sh
# Using HTTPS
git remote add fork https://github.com/YOUR-USERNAME/effectsize.git
git remote add upstream https://github.com/nbashir97/effectsize.git


# Using SSH
git remote add fork git@github.com:YOUR-USERNAME/effectsize.git
git remote add upstream git@github.com/nbashir97/effectsize.git
```

You can now verify that you have your two git remotes:

```sh
git remote -v
```

## Receive remote updates
In view of staying up to date with the central repository :

```sh
git pull upstream master
```

## Choose a base branch
Before starting development, you need to know which branch to base your modifications/additions on. When in doubt, use master.

| Type of change | | Branches |
| :------------------ |:---------:| ---------------------:|
| Documentation | | `master` |
| Bug fixes | | `master` |
| New features | | `master` |
| New issues models | | `YOUR-USERNAME:patch` |

```sh
# Switch to the desired branch
git switch master

# Pull down any upstream changes
git pull

# Create a new branch to work on
git switch --create patch/1234-name-issue
```

Commit your changes, then push the branch to your fork with `git push -u fork` and open a pull request on [the effectsize repository][effectsize] following the template provided.

[effectsize]: https://github.com/nbashir97/effectsize
[fork]: https://docs.github.com/en/get-started/quickstart/fork-a-repo
[remote]: https://docs.github.com/en/get-started/getting-started-with-git/about-remote-repositories
66 changes: 66 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG-REPORT.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: "🐛 Bug Report"
description: Create a new ticket for a bug.
title: "🐛 [BUG] - <title>"
labels: [
"bug"
]
body:
- type: textarea
id: description
attributes:
label: "Description"
description: Please enter an explicit description of your issue
placeholder: Short and explicit description of your incident...
validations:
required: true
- type: input
id: reprod-url
attributes:
label: "Reproduction URL"
description: Please enter your GitHub URL to provide a reproduction of the issue
placeholder: ex. https://github.com/USERNAME/REPO-NAME
validations:
required: true
- type: textarea
id: reprod
attributes:
label: "Reproduction steps"
description: Please enter an explicit description of your issue
value: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
render: bash
validations:
required: true
- type: textarea
id: screenshot
attributes:
label: "Screenshots"
description: If applicable, add screenshots to help explain your problem.
value: |
![DESCRIPTION](LINK.png)
render: bash
validations:
required: false
- type: textarea
id: logs
attributes:
label: "Logs"
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: bash
validations:
required: false
- type: dropdown
id: os
attributes:
label: "OS"
description: What is the impacted environment ?
multiple: true
options:
- Windows
- Linux
- Mac
validations:
required: false
63 changes: 63 additions & 0 deletions .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: "💡 Feature Request"
description: Create a new ticket for a new feature request
title: "💡 [REQUEST] - <title>"
labels: [
"question"
]
body:
- type: input
id: start_date
attributes:
label: "Start Date"
description: Start of development
placeholder: "month/day/year"
validations:
required: false
- type: textarea
id: implementation_pr
attributes:
label: "Implementation PR"
description: Pull request used
placeholder: "#Pull Request ID"
validations:
required: false
- type: textarea
id: reference_issues
attributes:
label: "Reference Issues"
description: Common issues
placeholder: "#Issues IDs"
validations:
required: false
- type: textarea
id: summary
attributes:
label: "Summary"
description: Provide a brief explanation of the feature
placeholder: Describe in a few lines your feature request
validations:
required: true
- type: textarea
id: basic_example
attributes:
label: "Basic Example"
description: Indicate here some basic examples of your feature.
placeholder: A few specific words about your feature request.
validations:
required: true
- type: textarea
id: drawbacks
attributes:
label: "Drawbacks"
description: What are the drawbacks/impacts of your feature request ?
placeholder: Identify the drawbacks and impacts while being neutral on your feature request
validations:
required: true
- type: textarea
id: unresolved_question
attributes:
label: "Unresolved questions"
description: What questions still remain unresolved ?
placeholder: Identify any unresolved issues.
validations:
required: false
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
42 changes: 42 additions & 0 deletions .github/PULL-REQUEST-TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Pull Request Template

## Description

Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.

Fixes # (issue)

## Type of change

Please delete options that are not relevant.

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update

## How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration

- [ ] Test A
- [ ] Test B

**Test Configuration(s)**:

* Firmware version:
* Hardware:
* Toolchain:
* SDK:

## Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream modules
- [ ] I have checked my code and corrected any misspellings
Loading