Skip to content

Opening EMODnet bathymetry using explicitly pydap #147

Opening EMODnet bathymetry using explicitly pydap

Opening EMODnet bathymetry using explicitly pydap #147

Workflow file for this run

name: test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
name: "Test - Python ${{ matrix.python-version}}"
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==2.0.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install dependencies
run: poetry install --with dev
- name: Test with Pytest
run: poetry run pytest