Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.

Commit 7c9b2b0

Browse files
authored
Merge pull request #2 from chavarera/master
Updating my fork
2 parents 101ddd4 + 63176e2 commit 7c9b2b0

File tree

239 files changed

+5362
-1077
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+5362
-1077
lines changed

.github/ISSUE_TEMPLATE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
## Type of issue
66

7-
- [ ] Feature(New Script)
7+
- [ ] Feature (New Script)
88
- [ ] Bug
99
- [ ] Documentation
1010

1111
## Checklist:
1212

1313
- [ ] I have read the project guidelines.
14-
- [ ] I have checked all the existing projects before submitting a new project issue
15-
- [ ] I have checked previous issues to avoid duplicates
14+
- [ ] I have checked all the existing projects, before submitting a new project issue.
15+
- [ ] I have checked previous issues to avoid duplicates.
1616
- [ ] This issue will be meaningful for the project.
1717

1818

.github/PULL_REQUEST_TEMPLATE.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Description
22

3-
A short summary of what is included in your pull request
3+
A short summary of what is included in your Pull Request.
44

55
Fixes #(issue_no)
66

7-
Replace `issue_no` in the above line with the issue related to this PR.
7+
Replace `issue_no` in the above line, with the issue related to this PR.
88

99
## Type of change
1010

@@ -15,13 +15,13 @@ Choosing one or more options from the following as per the nature of your Pull r
1515
- [ ] Documentation Update
1616

1717
# Checklist:
18-
19-
Please tick all the boxes that are fulfilled by your Pull request
20-
21-
- [ ] I have named my files and folder according to this project's guidelines
22-
- [ ] My code follows the style guidelines of this project
23-
- [ ] I have commented my code, particularly in hard-to-understand areas
24-
- [ ] I have created a helpful and easy to understand `README.md`
25-
- [ ] I have included a requirements.txt file(if external libraries are required)
26-
- [ ] My changes dont produce any warnings.
27-
- [ ] I have added a working sample/screenshot of the script
18+
Please tick all the boxes that are fulfilled by your Pull Request.
19+
20+
- [ ] I have named my files and folder, according to this project's guidelines.
21+
- [ ] My code follows the style guidelines of this project.
22+
- [ ] My Pull Request has a descriptive title. (not a vague title like `Update index.md`)
23+
- [ ] I have commented on my code, particularly in hard-to-understand areas.
24+
- [ ] I have created a helpful and easy to understand `README.md`, according to the given [`README_TEMPLATE.`](https://github.com/chavarera/python-mini-projects/blob/master/README_TEMPLATE.md)
25+
- [ ] I have included a requirements.txt file (if external libraries are required.)
26+
- [ ] My changes do not produce any warnings.
27+
- [ ] I have added a working sample/screenshot of the script.

.github/workflows/python-app.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+
name: Python application
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up Python 3.8
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: 3.8
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install flake8
27+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
28+
- name: Lint with flake8
29+
run: |
30+
# stop the build if there are Python syntax errors or undefined names
31+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
32+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
33+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
34+

Notebooks/Customer_loan_repayment_problem/datasets_137197_325031_test_Y3wMUE5_7gLdaTN.csv

+368
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)