Skip to content

restructure the weather module #27

restructure the weather module

restructure the weather module #27

Workflow file for this run

name: Tests for Main Merge
on:
pull_request:
branches:
- main
jobs:
tests-on-main:
runs-on: ubuntu-latest
env:
# Set environment variables globally for all steps within the job
GOOGLE_PROJECT_ID: ${{ vars.GOOGLE_PROJECT_ID }}
GOOGLE_EARTH_ENGINE_SERVICE_ACCOUNT_CREDENTIALS: ${{ secrets.GOOGLE_EARTH_ENGINE_SERVICE_ACCOUNT_CREDENTIALS }}
GOOGLE_EARTH_ENGINE_SERVICE_ACCOUNT_EMAIL: ${{ secrets.GOOGLE_EARTH_ENGINE_SERVICE_ACCOUNT_EMAIL }}
ENVIRONMENT: ${{ vars.ENVIRONMENT }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: pytest