Skip to content

Commit

Permalink
initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tedoaba committed Oct 30, 2024
1 parent cb30d2f commit a282502
Show file tree
Hide file tree
Showing 9 changed files with 9,094 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci-cd
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
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

# Run unit tests using pytest
- name: Run tests
run: |
pip install pytest pandas
pytest tests --maxfail=1 --disable-warnings
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ __pycache__/
# C extensions
*.so

# Environment
.week10

# Distribution / packaging
.Python
build/
Expand Down
1 change: 1 addition & 0 deletions data/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.csv
Loading

0 comments on commit a282502

Please sign in to comment.