change collect_min default in oracle output #19
Workflow file for this run
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: Run tests for target data script | |
on: | |
push: | |
paths: | |
- 'src/get_target_data.py' | |
workflow_dispatch: | |
jobs: | |
run-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Set up Python 🐍 | |
uses: actions/setup-python@v5 | |
with: | |
cache: pip | |
python-version: '3.12' | |
- name: Install dependencies 📦️ | |
run: | | |
pip install --upgrade pip | |
pip install -r src/requirements.txt | |
- name: Run tests 🧪 | |
run: | | |
pytest src/get_target_data.py -s |