Skip to content

Use nypl-py-utils patron_data_helper methods to get Sierra and Redshift patron info #13

Use nypl-py-utils patron_data_helper methods to get Sierra and Redshift patron info

Use nypl-py-utils patron_data_helper methods to get Sierra and Redshift patron info #13

Workflow file for this run

name: Run Python unit tests
on:
pull_request:
types: [ labeled, unlabeled, opened, reopened, synchronize ]
jobs:
changelog:
name: Updates changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dangoslen/changelog-enforcer@v3
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r devel_requirements.txt
- name: Run linter and test suite
run: |
make lint
make test