Merge pull request #13 from xcube-dev/konstntokas-xxx-update_all_note… #89
This file contains hidden or 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: Unittest xcube-multistore | |
| on: | |
| push: | |
| release: | |
| types: [published] | |
| jobs: | |
| unittest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout xcube-multistore | |
| uses: actions/checkout@v4 | |
| - name: Set up MicroMamba | |
| uses: mamba-org/setup-micromamba@v1 | |
| with: | |
| environment-file: environment.yml | |
| - name: Run unit tests | |
| shell: bash -l {0} | |
| run: pytest --cov=xcube_multistore --cov-report=xml | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| verbose: true | |
| token: ${{ secrets.CODECOV_TOKEN }} |