-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
97 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,9 +28,6 @@ jobs: | |
- "1.6" | ||
- "1" | ||
- "nightly" | ||
exclude: | ||
- os: macos-latest | ||
julia-version: nightly | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
|
@@ -47,3 +44,20 @@ jobs: | |
- uses: codecov/[email protected] | ||
with: | ||
file: lcov.info | ||
docs: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
permissions: | ||
contents: write | ||
statuses: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
show-versioninfo: true | ||
version: "1" | ||
- uses: julia-actions/julia-docdeploy@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
|
||
/docs/build/ | ||
lcov.info | ||
Manifest.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
using Documenter: Documenter, DocMeta | ||
using UUID4 | ||
|
||
DocMeta.setdocmeta!(UUID4, :DocTestSetup, quote | ||
#! format: noindent | ||
using OrderedCollections | ||
using UUID4 | ||
end) | ||
|
||
@info "doctest" | ||
Documenter.doctest(UUID4, fix = true, manual = false) | ||
|
||
@info "makedocs" | ||
Documenter.makedocs( | ||
doctest = false, | ||
format = Documenter.HTML(), | ||
modules = [UUID4], | ||
pages = ["Manual" => "index.md"], | ||
pagesonly = true, | ||
sitename = "UUID4.jl", | ||
) | ||
|
||
@info "deploydocs" | ||
Documenter.deploydocs( | ||
devbranch = "master", | ||
devurl = "latest", | ||
forcepush = true, | ||
repo = Documenter.getremote(@__DIR__), | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## API reference | ||
```@autodocs | ||
Modules = [UUID4] | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# UUID4.jl | ||
[![CI status](https://github.com/0h7z/UUID4.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/0h7z/UUID4.jl/actions/workflows/CI.yml) | ||
[![codecov.io](https://codecov.io/gh/0h7z/UUID4.jl/branch/master/graph/badge.svg)](https://app.codecov.io/gh/0h7z/UUID4.jl) | ||
|
||
***** | ||
## Usage | ||
```julia | ||
pkg> registry add https://github.com/0h7z/0hjl.git | ||
pkg> add UUID4 | ||
|
||
julia> using UUID4 | ||
help?> UUID4 | ||
help?> uuid | ||
``` | ||
|
||
***** | ||
## API reference | ||
```@autodocs | ||
Modules = [UUID4] | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters