Skip to content

fix: Wrong indentation in modis_processor.py and optimization of MODI… #13

fix: Wrong indentation in modis_processor.py and optimization of MODI…

fix: Wrong indentation in modis_processor.py and optimization of MODI… #13

Workflow file for this run

name: Python Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
strategy:
matrix:
python-version: ["3.12"]
os: [ ubuntu-latest ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # 啟用 pip 緩存加速安裝
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -e ".[test]"