links ks corrected in notebooks #182
Workflow file for this run
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 Tests | |
| on: | |
| push: | |
| release: | |
| types: [published] | |
| jobs: | |
| unittest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout xarray-eopf | |
| uses: actions/checkout@v4 | |
| - name: Set up MicroMamba | |
| uses: mamba-org/setup-micromamba@v1 | |
| with: | |
| environment-file: environment.yml | |
| - name: Install the package | |
| shell: bash -l {0} | |
| run: pip install --no-deps . | |
| - name: Run unit tests | |
| shell: bash -l {0} | |
| run: pytest --cov=xarray_eopf --cov-report=xml | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| verbose: true | |
| token: ${{ secrets.CODECOV_TOKEN }} |