FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
flopy/.github/workflows/examples.yml at develop · modflowpy/flopy · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
modflowpy
/
flopy
Public
Notifications
You must be signed in to change notification settings
Fork
359
Star
625
Code
Issues
43
Pull requests
18
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
flopy
/
.github
/
workflows
/
examples.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
79 lines (67 loc) · 2.41 KB
Breadcrumbs
flopy
/
.github
/
workflows
/
examples.yml
Copy path
File metadata and controls
79 lines (67 loc) · 2.41 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name
:
Example script & notebook tests
on
:
schedule
:
-
cron
:
'
0 8 * * *
'
#
run at 8 AM UTC (12 am PST)
jobs
:
examples
:
name
:
Example scripts & notebooks
runs-on
:
${{ matrix.os }}
strategy
:
fail-fast
:
false
matrix
:
os
:
[ ubuntu-latest, macos-latest, windows-latest ]
python-version
:
[ "3.11", "3.12", "3.13", "3.14" ]
defaults
:
run
:
shell
:
bash
timeout-minutes
:
90
steps
:
-
name
:
Checkout repo
uses
:
actions/checkout@v7
-
name
:
Setup Python ${{ matrix.python-version }}
uses
:
astral-sh/setup-uv@v7
with
:
python-version
:
${{ matrix.python-version }}
cache-dependency-glob
:
"
**/pyproject.toml
"
-
name
:
Install FloPy
run
:
uv sync --all-extras
-
name
:
OpenGL workaround on Linux
if
:
runner.os == 'Linux'
run
:
|
# referenced from https://github.com/pyvista/pyvista/blob/main/.github/workflows/vtk-pre-test.yml#L53
uv pip uninstall vtk
uv pip install --extra-index-url https://wheels.vtk.org trame vtk-osmesa
-
name
:
Install OpenGL on Windows
if
:
runner.os == 'Windows'
shell
:
pwsh
run
:
|
Set-StrictMode -Version Latest
$ErrorActionPreference = "Stop"
$PSDefaultParameterValues['*:ErrorAction']='Stop'
powershell .github/install_opengl.ps1
-
name
:
Install Modflow-related executables
uses
:
modflowpy/install-modflow-action@v1
-
name
:
Install Modflow dev build executables
uses
:
modflowpy/install-modflow-action@v1
with
:
repo
:
modflow6-nightly-build
-
name
:
Install triangle (macOS workaround)
if
:
runner.os == 'macOS'
uses
:
modflowpy/install-modflow-action@v1
with
:
repo
:
executables
ostag
:
mac
subset
:
triangle
-
name
:
Update FloPy packages
run
:
uv run python -m flopy.mf6.utils.generate_classes --ref develop
-
name
:
Run example tests
working-directory
:
autotest
run
:
uv run pytest -v test_example_notebooks.py -n=auto -s --durations=0 --keep-failed=.failed
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
-
name
:
Upload failed test outputs
uses
:
actions/upload-artifact@v7
if
:
failure()
with
:
name
:
failed-example-${{ matrix.os }}-${{ matrix.python-version }}
path
:
autotest/.failed/**
Back
|
FazBrowse Home
|
New Git URL