Skip to content

Commit 43ca2f2

Browse files
committed
Files generated by PkgTemplates
PkgTemplates version: 0.7.13
1 parent 2ace9bc commit 43ca2f2

14 files changed

+321
-0
lines changed

.github/workflows/CompatHelper.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16+
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/TagBot.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
jobs:
8+
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: JuliaRegistries/TagBot@v1
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.github/workflows/ci.yml

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: CI
2+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
test:
7+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
version:
13+
- '1.0'
14+
- '1.5'
15+
- 'nightly'
16+
os:
17+
- ubuntu-latest
18+
- macOS-latest
19+
- windows-latest
20+
arch:
21+
- x64
22+
steps:
23+
- uses: actions/checkout@v2
24+
- uses: julia-actions/setup-julia@v1
25+
with:
26+
version: ${{ matrix.version }}
27+
arch: ${{ matrix.arch }}
28+
- uses: actions/cache@v1
29+
env:
30+
cache-name: cache-artifacts
31+
with:
32+
path: ~/.julia/artifacts
33+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
34+
restore-keys: |
35+
${{ runner.os }}-test-${{ env.cache-name }}-
36+
${{ runner.os }}-test-
37+
${{ runner.os }}-
38+
- uses: julia-actions/julia-buildpkg@v1
39+
- uses: julia-actions/julia-runtest@v1
40+
docs:
41+
name: Documentation
42+
runs-on: ubuntu-latest
43+
steps:
44+
- uses: actions/checkout@v2
45+
- uses: julia-actions/setup-julia@v1
46+
with:
47+
version: '1'
48+
- run: |
49+
julia --project=docs -e '
50+
using Pkg
51+
Pkg.develop(PackageSpec(path=pwd()))
52+
Pkg.instantiate()'
53+
- run: |
54+
julia --project=docs -e '
55+
using Documenter: doctest
56+
using jlmie
57+
doctest(jlmie)'
58+
- run: julia --project=docs docs/make.jl
59+
env:
60+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/Manifest.toml
2+
/docs/build/

.travis.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia
2+
language: julia
3+
notifications:
4+
email: false
5+
julia:
6+
- 1.0
7+
- 1.5
8+
- nightly
9+
os:
10+
- linux
11+
- osx
12+
- windows
13+
arch:
14+
- x64
15+
cache:
16+
directories:
17+
- ~/.julia/artifacts
18+
jobs:
19+
fast_finish: true
20+
allow_failures:
21+
- julia: nightly
22+
include:
23+
- stage: Documentation
24+
julia: 1
25+
script: |
26+
julia --project=docs -e '
27+
using Pkg
28+
Pkg.develop(PackageSpec(path=pwd()))
29+
Pkg.instantiate()
30+
using Documenter: doctest
31+
using jlmie
32+
doctest(jlmie)
33+
include("docs/make.jl")'
34+
after_success: skip

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Tatsuki Hinamoto
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Project.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "jlmie"
2+
uuid = "83f16f31-eeab-45e4-be0e-7fc4231b6e5b"
3+
authors = ["Tatsuki Hinamoto"]
4+
version = "0.1.0"
5+
6+
[compat]
7+
julia = "1"
8+
9+
[extras]
10+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
11+
12+
[targets]
13+
test = ["Test"]

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# jlmie
2+
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://Hinamoooon.github.io/jlmie.jl/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://Hinamoooon.github.io/jlmie.jl/dev)
5+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://Hinamoooon.github.io/jlmie.jl/stable)
6+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://Hinamoooon.github.io/jlmie.jl/dev)
7+
[![Build Status](https://github.com/Hinamoooon/jlmie.jl/workflows/CI/badge.svg)](https://github.com/Hinamoooon/jlmie.jl/actions)
8+
[![Build Status](https://travis-ci.com/Hinamoooon/jlmie.jl.svg?branch=master)](https://travis-ci.com/Hinamoooon/jlmie.jl)

docs/Manifest.toml

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
3+
[[Base64]]
4+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
5+
6+
[[Dates]]
7+
deps = ["Printf"]
8+
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
9+
10+
[[Distributed]]
11+
deps = ["Random", "Serialization", "Sockets"]
12+
uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"
13+
14+
[[DocStringExtensions]]
15+
deps = ["LibGit2", "Markdown", "Pkg", "Test"]
16+
git-tree-sha1 = "50ddf44c53698f5e784bbebb3f4b21c5807401b1"
17+
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
18+
version = "0.8.3"
19+
20+
[[Documenter]]
21+
deps = ["Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
22+
git-tree-sha1 = "b7715ae18be02110a8cf9cc8ed2ccdb1e3e3aba2"
23+
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
24+
version = "0.26.1"
25+
26+
[[IOCapture]]
27+
deps = ["Logging"]
28+
git-tree-sha1 = "377252859f740c217b936cebcd918a44f9b53b59"
29+
uuid = "b5f81e59-6552-4d32-b1f0-c071b021bf89"
30+
version = "0.1.1"
31+
32+
[[InteractiveUtils]]
33+
deps = ["Markdown"]
34+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
35+
36+
[[JSON]]
37+
deps = ["Dates", "Mmap", "Parsers", "Unicode"]
38+
git-tree-sha1 = "81690084b6198a2e1da36fcfda16eeca9f9f24e4"
39+
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
40+
version = "0.21.1"
41+
42+
[[LibGit2]]
43+
deps = ["Printf"]
44+
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
45+
46+
[[Libdl]]
47+
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
48+
49+
[[Logging]]
50+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
51+
52+
[[Markdown]]
53+
deps = ["Base64"]
54+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
55+
56+
[[Mmap]]
57+
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
58+
59+
[[Parsers]]
60+
deps = ["Dates"]
61+
git-tree-sha1 = "50c9a9ed8c714945e01cd53a21007ed3865ed714"
62+
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
63+
version = "1.0.15"
64+
65+
[[Pkg]]
66+
deps = ["Dates", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "UUIDs"]
67+
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
68+
69+
[[Printf]]
70+
deps = ["Unicode"]
71+
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
72+
73+
[[REPL]]
74+
deps = ["InteractiveUtils", "Markdown", "Sockets"]
75+
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
76+
77+
[[Random]]
78+
deps = ["Serialization"]
79+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
80+
81+
[[SHA]]
82+
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
83+
84+
[[Serialization]]
85+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
86+
87+
[[Sockets]]
88+
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
89+
90+
[[Test]]
91+
deps = ["Distributed", "InteractiveUtils", "Logging", "Random"]
92+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
93+
94+
[[UUIDs]]
95+
deps = ["Random", "SHA"]
96+
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
97+
98+
[[Unicode]]
99+
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
100+
101+
[[jlmie]]
102+
path = ".."
103+
uuid = "83f16f31-eeab-45e4-be0e-7fc4231b6e5b"
104+
version = "0.1.0"

docs/Project.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
jlmie = "83f16f31-eeab-45e4-be0e-7fc4231b6e5b"

docs/make.jl

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using jlmie
2+
using Documenter
3+
4+
makedocs(;
5+
modules=[jlmie],
6+
authors="Tatsuki Hinamoto",
7+
repo="https://github.com/Hinamoooon/jlmie.jl/blob/{commit}{path}#L{line}",
8+
sitename="jlmie.jl",
9+
format=Documenter.HTML(;
10+
prettyurls=get(ENV, "CI", "false") == "true",
11+
canonical="https://Hinamoooon.github.io/jlmie.jl",
12+
assets=String[],
13+
),
14+
pages=[
15+
"Home" => "index.md",
16+
],
17+
)
18+
19+
deploydocs(;
20+
repo="github.com/Hinamoooon/jlmie.jl",
21+
)

docs/src/index.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
```@meta
2+
CurrentModule = jlmie
3+
```
4+
5+
# jlmie
6+
7+
```@index
8+
```
9+
10+
```@autodocs
11+
Modules = [jlmie]
12+
```

src/jlmie.jl

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module jlmie
2+
3+
# Write your package code here.
4+
5+
end

test/runtests.jl

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
using jlmie
2+
using Test
3+
4+
@testset "jlmie.jl" begin
5+
# Write your tests here.
6+
end

0 commit comments

Comments
 (0)