Skip to content

Grid write performance boost #81

Grid write performance boost

Grid write performance boost #81

Workflow file for this run

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