Skip to content

Merge pull request #28 from aanil/add_tests #3

Merge pull request #28 from aanil/add_tests

Merge pull request #28 from aanil/add_tests #3

Workflow file for this run

name: Run tests on push
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
cd $GITHUB_WORKSPACE
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r tests/requirements-test.txt
pip install pytest pytest-cov
- name: Test with pytest
run: |
python -m pytest --cov=daily_read tests