Skip to content

Commit 5342700

Browse files
Bump crate-ci/typos from 1.14.11 to 1.14.12 (#116)
* Bump crate-ci/typos from 1.14.11 to 1.14.12 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.14.11 to 1.14.12. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.14.11...v1.14.12) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * update formatter * format --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hendrik Ranocha <ranocha@users.noreply.github.com> Co-authored-by: Hendrik Ranocha <mail@ranocha.de>
1 parent c04dc11 commit 5342700

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

.github/workflows/FormatCheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
#
2727
# julia -e 'using Pkg; Pkg.add(PackageSpec(name="JuliaFormatter", version="0.13.0"))'
2828
run: |
29-
julia -e 'using Pkg; Pkg.add(PackageSpec(name="JuliaFormatter"))'
30-
julia -e 'using JuliaFormatter; format(".", verbose=true)'
29+
julia -e 'using Pkg; Pkg.add(PackageSpec(name = "JuliaFormatter", version = v"1.0.32"))'
30+
julia -e 'using JuliaFormatter; format(".", verbose = true)'
3131
- name: Format check
3232
run: |
3333
julia -e '

.github/workflows/SpellCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
- name: Checkout Actions Repository
1111
uses: actions/checkout@v3
1212
- name: Check spelling
13-
uses: crate-ci/typos@v1.14.11
13+
uses: crate-ci/typos@v1.14.12

src/RootedTrees.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1442,7 +1442,9 @@ function __init__()
14421442
Vector{Bool}(undef, BUFFER_LENGTH))
14431443

14441444
@static if !isdefined(Base, :get_extension)
1445-
@require Plots="91a5bcdd-55d7-5caf-9e0b-520d859cae80" begin include("../ext/PlotsExt.jl") end
1445+
@require Plots="91a5bcdd-55d7-5caf-9e0b-520d859cae80" begin
1446+
include("../ext/PlotsExt.jl")
1447+
end
14461448
end
14471449

14481450
return nothing

test/runtests.jl

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,12 +1134,14 @@ using Aqua: Aqua
11341134
end
11351135

11361136
# https://github.com/SciML/RootedTrees.jl/issues/72
1137-
@testset "BicoloredRootedTreeIterator is canonical" begin for o in 1:10
1138-
for t_iterator in BicoloredRootedTreeIterator(o)
1139-
t_canonical = RootedTrees.canonical_representation(t_iterator)
1140-
@test t_iterator == t_canonical
1137+
@testset "BicoloredRootedTreeIterator is canonical" begin
1138+
for o in 1:10
1139+
for t_iterator in BicoloredRootedTreeIterator(o)
1140+
t_canonical = RootedTrees.canonical_representation(t_iterator)
1141+
@test t_iterator == t_canonical
1142+
end
11411143
end
1142-
end end
1144+
end
11431145

11441146
# See Sections 2.3 & 6.1 and Table 2 of
11451147
# - Philippe Chartier, Ernst Hairer, Gilles Vilmart (2010)

0 commit comments

Comments
 (0)