Skip to content

added scaling for odc-stac #98

added scaling for odc-stac

added scaling for odc-stac #98

name: Unittest xcube-stac
on:
push:
release:
types: [published]
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- name: checkout xcube
uses: actions/checkout@v4
with:
repository: xcube-dev/xcube
path: xcube
- name: checkout xcube-stac
uses: actions/checkout@v4
with:
path: xcube-stac
- name: Set up MicroMamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: xcube-stac/environment.yml
- name: Start xcube server
shell: bash -l {0}
run: |
cd /home/runner/work/xcube-stac/xcube-stac/xcube
ls
xcube serve -c examples/serve/demo/config.yml &
- name: Run unit tests
shell: bash -l {0}
run: |
cd /home/runner/work/xcube-stac/xcube-stac/xcube-stac
ls
pytest --cov=xcube_stac --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}