Skip to content

Commit 12cb2d6

Browse files
Merge branch 'JuliaGeodynamics:main' into main
2 parents e807ae6 + f3444c8 commit 12cb2d6

File tree

3 files changed

+27
-7
lines changed

3 files changed

+27
-7
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ on:
66
branches:
77
- main
88
tags: '*'
9+
schedule:
10+
- cron: '0 15 */14 * *'
911

1012
# Cancel redundant CI tests automatically
1113
concurrency:
1214
group: ${{ github.workflow }}-${{ github.ref }}
1315
cancel-in-progress: true
14-
16+
1517
jobs:
1618
run_tests:
1719
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -51,7 +53,7 @@ jobs:
5153
- os: windows-latest
5254
arch: x86
5355
version: 'pre'
54-
allow_failure: true
56+
allow_failure: true
5557
steps:
5658
- uses: actions/checkout@v4
5759
- uses: julia-actions/setup-julia@v2

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: '00 00 * * *'
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} # optional
16+
run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs=[""])' # subdirs can be omitted if not needed

Project.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,25 +40,26 @@ GridapGmsh = "3025c34a-b394-11e9-2a55-3fee550c04c8"
4040
[extensions]
4141
Chmy_utils = "Chmy"
4242
GLMakie_Visualisation = "GLMakie"
43-
Gmsh_utils = "GridapGmsh"
4443
GMT_utils = "GMT"
44+
Gmsh_utils = "GridapGmsh"
4545

4646
[compat]
4747
Chmy = "0.1.20"
48-
Colors = "0.9 - 0.12"
48+
DelimitedFiles = "1"
49+
Colors = "0.9 - 0.12, 0.13"
4950
Downloads = "1"
5051
FFMPEG = "0.4"
5152
FileIO = "1"
5253
GDAL_jll = "300.900.0 - 301.901.0"
53-
GLMakie = "0.8 - 0.11"
54+
GLMakie = "0.8 - 0.11, 0.13"
55+
GMT = "1"
5456
GeoParams = "0.2 - 0.7"
5557
Geodesy = "1"
5658
GeometryBasics = "0.1 - 0.5"
5759
Glob = "1.2 - 1.3"
58-
GMT = "1"
5960
GridapGmsh = "0.5 - 0.7"
6061
ImageIO = "0.1 - 0.6"
61-
Interpolations = "0.14, 0.15"
62+
Interpolations = "0.14, 0.15, 0.16"
6263
JLD2 = "0.4, 0.5"
6364
LightXML = "0.8, 0.9"
6465
MeshIO = "0.1 - 0.5"
@@ -67,6 +68,7 @@ NearestNeighbors = "0.2 - 0.4"
6768
Parameters = "0.9 - 0.12"
6869
SpecialFunctions = "1.0, 2"
6970
StaticArrays = "1"
71+
Statistics = "1"
7072
WhereTheWaterFlows = "0.10, 0.11"
7173
WriteVTK = "1"
7274
julia = "1.9"

0 commit comments

Comments
 (0)