Add notes on message levels to docstrings and Readme #84
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: Test | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| # Allow the workflow to be manually triggered from the Actions tab. | |
| workflow_dispatch: | |
| jobs: | |
| testing: | |
| name: testing HECDSS functions | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - name: Set Up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| # On all platforms install the PyPI tzdata distribution | |
| # (stdlib zoneinfo will auto‐pick it up; the backport will too) | |
| - name: Install tzdata (Python) | |
| run: pip install tzdata | |
| - name: Install runtime dependencies | |
| run: | | |
| pip install requests | |
| pip install numpy | |
| pip install pytest | |
| - name: add dll | |
| run: python3 src/hecdss/download_hecdss.py | |
| - name: Run tests | |
| run: pytest tests | |