-
Notifications
You must be signed in to change notification settings - Fork 16
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
1 parent
17f4e29
commit c4e9641
Showing
8 changed files
with
2,760 additions
and
210 deletions.
There are no files selected for viewing
Binary file not shown.
27 changes: 27 additions & 0 deletions
27
Car Loan - CreditWorthiness 2024/.github/workflows/automate.yml
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,27 @@ | ||
name: Continuous Integration for the Car Loan Approval App | ||
|
||
on: | ||
push: | ||
branch: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Python 3 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python version: 3.12 | ||
- name: Install Dependencies | ||
run: | ||
python -m pip install --upgrade pip | ||
pip install pytest | ||
pip install -r requirements.txt | ||
- name: Run tests with Pytest | ||
run: pytest | ||
|
||
|
||
|
||
|
Oops, something went wrong.