ADD: add possibility to retrieve soundings over MCH DWH #375
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: Test pyrad mch dev | |
| on: | |
| # Triggers the workflow on push or pull request events but only for the master branch | |
| push: | |
| branches: [ dev ] | |
| pull_request: | |
| branches: [ dev ] | |
| jobs: | |
| unit_tests: | |
| name: Unit Tests (${{ matrix.python-version }}, ${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ "ubuntu-latest"] | |
| python-version: [ "3.9", "3.10", "3.11", "3.12"] | |
| max-parallel: 6 | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| ref : dev | |
| # Install dependencies | |
| - name: Setup Conda Environment | |
| uses: mamba-org/setup-micromamba@v1 | |
| with: | |
| environment-file: ci/environment-ci.yml | |
| activate-environment: pyrad-dev | |
| cache-downloads: true | |
| python-version: ${{ matrix.python-version }} | |
| - name: Clone pyrad-tests | |
| uses: actions/checkout@main | |
| with: | |
| repository: MeteoSwiss/pyrad-tests | |
| path: pyrad-tests | |
| - name: Clone pyart | |
| uses: actions/checkout@main | |
| with: | |
| repository: MeteoSwiss/pyart | |
| path: pyart | |
| ref: dev | |
| - name: Install pyart | |
| if: matrix.os != 'macos-latest' | |
| working-directory: ${{github.workspace}}/pyart/ | |
| run: python -m pip install . | |
| - name: Install pyrad | |
| if: matrix.os != 'macos-latest' | |
| working-directory: ${{github.workspace}}/src/pyrad_proc/ | |
| run: python -m pip install . | |
| - name: Install DX50 lib | |
| working-directory: ${{github.workspace}}/src/libDX50/ | |
| run: make | |
| - name: Check imports | |
| working-directory: ${{github.workspace}}/pyrad-tests/ | |
| run: | | |
| python -c "import pyrad; print(pyrad.__file__)" | |
| python -c "from pyrad.flow import main" | |
| # Insert tmate session here | |
| - name: Run tests | |
| env: | |
| PYRAD_TESTS_PATH: ${{github.workspace}}/pyrad-tests/ | |
| PSRLIB_PATH: ${{github.workspace}}/src/libDX50/lib/ | |
| PYART_CONFIG: ${{github.workspace}}/config/pyart/mch_config.py | |
| working-directory: ${{github.workspace}}/pyrad-tests// | |
| run: pytest "run_tests.py::test_mch" | |
| - name: tmate session if tests fail | |
| if: ${{ github.event_name == 'workflow_dispatch' && failure() }} | |
| uses: mxschmitt/action-tmate@v3 |