Skip to content

Added google doc with research and test results #114

Added google doc with research and test results

Added google doc with research and test results #114

Workflow file for this run

name: CI Pipeline
# Trigger the workflow on both push and pull requests
on: [push, pull_request]
jobs:
# Ruff linter job
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Ruff
uses: chartboost/ruff-action@v1
# Unit test job
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests
run: |
python -m unittest discover -s test