Updates 2024-07-10 - bug fix #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Herding Cats Lambda Deploy | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'herding_cats_explorer/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install pytest | |
run: pip install pytest requests loguru | |
- name: Run tests | |
run: pytest tests/endpoints_still_active.py |