Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
28101991SUNNY committed May 6, 2024
1 parent 17f4e29 commit c4e9641
Show file tree
Hide file tree
Showing 8 changed files with 2,760 additions and 210 deletions.
Binary file added Car Loan - CreditWorthiness 2024/.DS_Store
Binary file not shown.
27 changes: 27 additions & 0 deletions Car Loan - CreditWorthiness 2024/.github/workflows/automate.yml
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




Loading

0 comments on commit c4e9641

Please sign in to comment.