Skip to content

Edit fetch upload script with new dates #19

Edit fetch upload script with new dates

Edit fetch upload script with new dates #19

name: Python Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
# Checkout the code
- name: Check out repository
uses: actions/checkout@v3
# Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9' # Change to your desired Python version
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Set Python Path
run: echo "PYTHONPATH=$(pwd)" >> $GITHUB_ENV
# Run tests
- name: Run unit tests
run: |
pytest .tests --maxfail=3 --disable-warnings