Skip to content

Commit 72e4ab2

Browse files
authored
Merge branch 'master' into dependabot/github_actions/julia-actions/setup-julia-3
2 parents d00ded5 + d71b4e6 commit 72e4ab2

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
- uses: julia-actions/setup-julia@v3
3030
with:
3131
version: ${{ matrix.version }}
32-
- uses: julia-actions/cache@v2
32+
- uses: julia-actions/cache@v3
3333
- uses: julia-actions/julia-buildpkg@v1
3434
- uses: julia-actions/julia-runtest@v1
3535
- uses: julia-actions/julia-processcoverage@v1
36-
- uses: codecov/codecov-action@v5
36+
- uses: codecov/codecov-action@v6
3737
with:
3838
files: lcov.info
3939
docs:
@@ -44,7 +44,7 @@ jobs:
4444
- uses: julia-actions/setup-julia@v3
4545
with:
4646
version: "1"
47-
- uses: julia-actions/cache@v2
47+
- uses: julia-actions/cache@v3
4848
- name: Configure doc environment
4949
shell: julia --project=docs --color=yes {0}
5050
run: |

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ OrderedCollections = "1.4"
2727
PrettyTables = "3"
2828
SHA = "0.7, 1"
2929
Tables = "1"
30-
XLSX = "0.7, 0.8, 0.9, 0.10"
30+
XLSX = "0.7, 0.8, 0.9, 0.10, 0.11"
3131
julia = "1.10"
3232

3333
[extras]

src/compute_MTG/check_filters.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ end
3131
end
3232

3333
@inline normalize_symbol_allowed(filters::Nothing) = nothing
34+
@inline normalize_symbol_allowed(filter) = (normalize_symbol_filter(filter),)
3435
@inline function normalize_symbol_allowed(filters::T) where {T<:Union{Tuple,AbstractArray}}
3536
map(normalize_symbol_filter, filters)
3637
end

test/test-descendants.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
@test descendants(mtg) == traverse(mtg[1], x -> x)
5959
@test descendants(mtg, self=true) == traverse(mtg, x -> x)
6060
@test descendants(get_node(mtg, 6), self=true) == [get_node(mtg, 6), get_node(mtg, 7)]
61+
mtg[:symbols] = SubString("Leaf", 1, 4)
62+
@test descendants(mtg, symbol=:Leaf) == [get_node(mtg, 5), get_node(mtg, 7)]
6163

6264
out_nodes = typeof(mtg)[]
6365
@test descendants!(out_nodes, mtg) == traverse(mtg[1], x -> x)

0 commit comments

Comments
 (0)