Skip to content

first pass at handling the new nhsn format for weekly data #11

first pass at handling the new nhsn format for weekly data

first pass at handling the new nhsn format for weekly data #11

name: run-code-checks
on: [push]
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
cache: 'pip'
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements-dev.txt && pip install -e .
- name: lint
run: |
ruff check .
- name: run tests
run: |
pytest