Skip to content

add US to new nhsn data, get tests to pass again #13

add US to new nhsn data, get tests to pass again

add US to new nhsn data, get tests to pass again #13

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