Make min_upstream_level and max_downstream_level controllable #3954
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: QGIS Tests | |
on: | |
push: | |
branches: [main] | |
paths-ignore: [".teamcity/**"] | |
tags: ["*"] | |
pull_request: | |
paths-ignore: [".teamcity/**"] | |
merge_group: | |
workflow_dispatch: | |
jobs: | |
test-qgis: | |
name: "Test" | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: .docker | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/setup-pixi@v0.8.2 | |
with: | |
pixi-version: "latest" | |
- name: Run tests | |
run: pixi run test-ribasim-qgis-docker | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |