Skip to content

Merge pull request #408 from IBM/romeokienzler-patch-2 #1036

Merge pull request #408 from IBM/romeokienzler-patch-2

Merge pull request #408 from IBM/romeokienzler-patch-2 #1036

Workflow file for this run

name: terratorch tuning toolkit
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12.7"]
steps:
- name: Clone repo
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
pip install git+https://github.com/NASA-IMPACT/Prithvi-WxC.git
pip install git+https://github.com/IBM/granite-wxc.git
- name: List pip dependencies
run: pip list
- name: Test with pytest
run: |
pytest -s tests