Check with dev version of MIKE IO #15
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: Check with dev version of MIKE IO | |
on: | |
schedule: | |
# every monday at 00:00 UTC | |
- cron : '0 0 * * 1' | |
workflow_dispatch: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install MIKE IO from main | |
run: pip install https://github.com/DHI/mikeio/archive/main.zip | |
- name: Install other dependencies | |
run: pip install -r requirements.txt | |
- name: Build the book | |
run: jupyter-book build -W mini_book/ |