Skip to content

refactor: remove legacy backward-compatibility code from CLI and geot… #5

refactor: remove legacy backward-compatibility code from CLI and geot…

refactor: remove legacy backward-compatibility code from CLI and geot… #5

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -e oceanstream
pip install -r requirements-dev.txt || true
- name: Lint (ruff)
run: ruff check .
- name: Type check (mypy)
run: mypy oceanstream
- name: Tests with coverage
run: pytest --cov=oceanstream --cov-report=xml --cov-report=term
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
name: coverage-xml
path: coverage.xml