Skip to content

test added

test added #15

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
# Checkout code
- name: Checkout code
uses: actions/checkout@v3
# Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
# Install dependencies
- name: Install dependencies
run: |
pip install -r requirements.txt # Install project dependencies
# Run unit tests using unittest
- name: Run tests
run: |
python -m unittest discover -s tests -p "test_data_loader.py" # Discover and run the specific test file