Skip to content

Add unit tests for fetch updates #2

Add unit tests for fetch updates

Add unit tests for fetch updates #2

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r scripts/requirements.txt
pip install pytest
- name: Run Tests
run: pytest