Compare commits

...

2 commits

Author SHA1 Message Date
804977c506
fix: Remove testing from UUID generation
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/test/1 Pipeline was successful
ci/woodpecker/push/test/2 Pipeline was successful
ci/woodpecker/push/test/3 Pipeline was successful
Although Documenter supports `filter`ing non-deterministic output from
doctests, the non-deterministic parts were being picked up as errors by
CI, even though all my local machines were fine. To avoid this, just
replace the non-deterministic doctest with a `julia-repl` block.
2026-02-12 22:16:42 -06:00
7a4bee679f
ci: Don't use shallow clone for docs 2026-02-12 22:14:27 -06:00
2 changed files with 11 additions and 4 deletions

View file

@ -2,6 +2,13 @@ when:
branch: master branch: master
event: push event: push
clone:
git:
image: woodpeckerci/plugin-git
settings:
partial: false
depth: 0
steps: steps:
docs: docs:
image: julia:1 image: julia:1

View file

@ -82,13 +82,13 @@ value of the `UUID` is passed directly into the method.
# Examples # Examples
```jldoctest; filter = r"[0-9A-Z]{26}" => "7ZK00JECBDF2H7GNBXN59C6S9S" ```jldoctest
julia> base30encode(30) julia> base30encode(30)
"10" "10"
```
julia> using UUIDs ```julia-repl
julia> using UUIDs; base30encode(uuid1())
julia> base30encode(UUIDs.uuid1())
"7ZK00JECBDF2H7GNBXN59C6S9S" "7ZK00JECBDF2H7GNBXN59C6S9S"
``` ```