unittesting done for stack-mode #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
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_workflow.yml | |
- name: Install xcube and start xcube server | |
shell: bash -l {0} | |
run: | | |
cd /home/runner/work/xcube-stac/xcube-stac/xcube | |
ls | |
pip install . | |
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 |