Examples #6
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: Examples | |
on: | |
workflow_dispatch: | |
schedule: # Run once a week to detect any regressions | |
- cron: '0 0 * * 1' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
example: [ | |
"Basic/example.py", | |
"Basic/example_decorators.py", | |
"Basic/example_parallelization.py", | |
"Basic/sensitivity_analysis.py", | |
"Basic/dps_example.py", | |
"Eijgenraam/eijgenraam.py", | |
"Languages/Python/lakeModelInPython.py", | |
"Languages/R/lakeModelInR.py", | |
#"Languages/Excel/lakeModelInExcel.py" # requires Windows | |
"Languages/C/lakeModelInC.py"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get minimum Python version | |
run: | | |
#PYTHON_VERSION=$(cat pyproject.toml | grep "requires-python" | grep -Eo "[0-9]+\.[0-9]+") | |
PYTHON_VERSION="3.12" | |
echo "PYTHON_VERSION=${PYTHON_VERSION}" >> $GITHUB_ENV | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y graphviz r-base | |
pip install .[test] | |
- name: Run example | |
run: | | |
EXAMPLE="examples/${{ matrix.example }}" | |
EXAMPLE_DIR=$(dirname "${EXAMPLE}") | |
EXAMPLE_FILE=$(basename "${EXAMPLE}") | |
pushd "${EXAMPLE_DIR}" | |
if [ -f "Makefile" ]; then | |
make | |
fi | |
LD_LIBRARY_PATH="$(pwd):${LD_LIBRARY_PATH}" | |
python "${EXAMPLE_FILE}" |