Skip to content

refactor: adapt to eodag v3 #85

refactor: adapt to eodag v3

refactor: adapt to eodag v3 #85

Workflow file for this run

name: Run Tests
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
schedule:
- cron: '0 7 * * 1'
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, '3.11']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- name: Setup pip cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: pip-${{ matrix.python-version }}-${{ hashFiles('package.json') }}
restore-keys: |
pip-${{ matrix.python-version }}-
pip-
- name: Install the extension
run: python -m pip install .[dev]
- name: Test with pytest
run: pytest -v