Support for climate change with delta change method #46
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: Test stable | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
Test: | |
name: ${{ matrix.os }} - py${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest"] #, "ubuntu-latest", "macos-latest", windows-latest] | |
python-version: ["3.10", "3.11"] # fix tests to support older versions | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
mamba-version: "*" | |
channels: conda-forge,defaults | |
channel-priority: true | |
environment-file: envs/hydromt-delwaq.yml | |
activate-environment: hydromt-delwaq | |
- name: Conda info | |
run: | | |
conda info | |
conda list | |
- name: Install plugin | |
run: flit install --deps all | |
- name: Run Tests | |
run: python -m pytest --verbose --cov=hydromt_delwaq --cov-report xml | |
- name: Upload code coverage | |
uses: codecov/codecov-action@v3 |