Skip to content

add docker-entrypoint #48

add docker-entrypoint

add docker-entrypoint #48

Workflow file for this run

# A GitHub action to run our data tests
name: Pytest Data Tests
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
jobs:
pytest:
name: 'Pytest'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest