Skip to content

Commit

Permalink
Test Julia 1.7 (#55)
Browse files Browse the repository at this point in the history
* Test Julia 1.7

Since the package compat bounds are 1.7 that version should be tested in CI.

* Adjust compat bounds for `SHA`

* Change `@testset` to use a `begin` block

* Update .github/workflows/CI.yml

Co-authored-by: David Widmann <[email protected]>

* Update Project.toml

Co-authored-by: David Widmann <[email protected]>

---------

Co-authored-by: David Widmann <[email protected]>
  • Loading branch information
MichaelHatherly and devmotion authored Nov 27, 2024
1 parent 9b8df31 commit 9bd4191
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
strategy:
matrix:
version:
- 'min'
- '1'
os:
- ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ MultipleTesting = "0.5, 0.6"
NaturalSort = "1.0"
OrderedCollections = "1"
Printf = "1"
SHA = "0.7"
SHA = "<0.0.1, 0.7, 1"
Statistics = "1"
StatsBase = "0.33, 0.34"
Tables = "1"
Expand Down
4 changes: 3 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ end
)

@testset for func in [as_html, as_latex, as_docx, as_typst]
reftest(t, path) = @testset "$path" run_reftest(t, path, func)
reftest(t, path) = @testset "$path" begin
run_reftest(t, path, func)
end

@testset "table_one" begin
t = table_one(df, [:value1])
Expand Down

0 comments on commit 9bd4191

Please sign in to comment.