Skip to content

Commit 868a3a7

Browse files
committed
Files generated by PkgTemplates
PkgTemplates version: 0.7.16
1 parent e62d064 commit 868a3a7

File tree

14 files changed

+359
-0
lines changed

14 files changed

+359
-0
lines changed

.github/workflows/CI.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.6'
14+
- 'nightly'
15+
os:
16+
- ubuntu-latest
17+
- macOS-latest
18+
- windows-latest
19+
arch:
20+
- x64
21+
- x86
22+
exclude:
23+
- os: macOS-latest
24+
arch: x86
25+
steps:
26+
- uses: actions/checkout@v2
27+
- uses: julia-actions/setup-julia@v1
28+
with:
29+
version: ${{ matrix.version }}
30+
arch: ${{ matrix.arch }}
31+
- uses: actions/cache@v1
32+
env:
33+
cache-name: cache-artifacts
34+
with:
35+
path: ~/.julia/artifacts
36+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
37+
restore-keys: |
38+
${{ runner.os }}-test-${{ env.cache-name }}-
39+
${{ runner.os }}-test-
40+
${{ runner.os }}-
41+
- uses: julia-actions/julia-buildpkg@v1
42+
- uses: julia-actions/julia-runtest@v1
43+
- uses: julia-actions/julia-processcoverage@v1
44+
- uses: codecov/codecov-action@v1
45+
with:
46+
file: lcov.info
47+
docs:
48+
name: Documentation
49+
runs-on: ubuntu-latest
50+
steps:
51+
- uses: actions/checkout@v2
52+
- uses: julia-actions/setup-julia@v1
53+
with:
54+
version: '1'
55+
- run: |
56+
julia --project=docs -e '
57+
using Pkg
58+
Pkg.develop(PackageSpec(path=pwd()))
59+
Pkg.instantiate()'
60+
- run: |
61+
julia --project=docs -e '
62+
using Documenter: DocMeta, doctest
63+
using ConstraintModels
64+
DocMeta.setdocmeta!(ConstraintModels, :DocTestSetup, :(using ConstraintModels); recursive=true)
65+
doctest(ConstraintModels)'
66+
- run: julia --project=docs docs/make.jl
67+
env:
68+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 0 deletions
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

Lines changed: 15 additions & 0 deletions
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 }}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.jl.*.cov
2+
*.jl.cov
3+
*.jl.mem
4+
/Manifest.toml
5+
/docs/build/

CITATION.bib

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@misc{ConstraintModels.jl,
2+
author = {Jean-Francois Baffier},
3+
title = {ConstraintModels.jl},
4+
url = {https://github.com/JuliaConstraints/ConstraintModels.jl},
5+
version = {v0.1.0},
6+
year = {2021},
7+
month = {3}
8+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Jean-Francois Baffier
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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "ConstraintModels"
2+
uuid = "841a6ec5-cac3-4c42-9a0a-4b21c9553698"
3+
authors = ["Jean-Francois Baffier"]
4+
version = "0.1.0"
5+
6+
[compat]
7+
julia = "1.6"
8+
9+
[extras]
10+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
11+
12+
[targets]
13+
test = ["Test"]

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# ConstraintModels
2+
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaConstraints.github.io/ConstraintModels.jl/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaConstraints.github.io/ConstraintModels.jl/dev)
5+
[![Build Status](https://github.com/JuliaConstraints/ConstraintModels.jl/workflows/CI/badge.svg)](https://github.com/JuliaConstraints/ConstraintModels.jl/actions)
6+
[![Coverage](https://codecov.io/gh/JuliaConstraints/ConstraintModels.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaConstraints/ConstraintModels.jl)
7+
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
8+
[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac)

docs/Manifest.toml

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
3+
[[ArgTools]]
4+
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
5+
6+
[[Artifacts]]
7+
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
8+
9+
[[Base64]]
10+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
11+
12+
[[ConstraintModels]]
13+
path = ".."
14+
uuid = "841a6ec5-cac3-4c42-9a0a-4b21c9553698"
15+
version = "0.1.0"
16+
17+
[[Dates]]
18+
deps = ["Printf"]
19+
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
20+
21+
[[DocStringExtensions]]
22+
deps = ["LibGit2", "Markdown", "Pkg", "Test"]
23+
git-tree-sha1 = "50ddf44c53698f5e784bbebb3f4b21c5807401b1"
24+
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
25+
version = "0.8.3"
26+
27+
[[Documenter]]
28+
deps = ["Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
29+
git-tree-sha1 = "3ebb967819b284dc1e3c0422229b58a40a255649"
30+
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
31+
version = "0.26.3"
32+
33+
[[Downloads]]
34+
deps = ["ArgTools", "LibCURL", "NetworkOptions"]
35+
uuid = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
36+
37+
[[IOCapture]]
38+
deps = ["Logging"]
39+
git-tree-sha1 = "377252859f740c217b936cebcd918a44f9b53b59"
40+
uuid = "b5f81e59-6552-4d32-b1f0-c071b021bf89"
41+
version = "0.1.1"
42+
43+
[[InteractiveUtils]]
44+
deps = ["Markdown"]
45+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
46+
47+
[[JSON]]
48+
deps = ["Dates", "Mmap", "Parsers", "Unicode"]
49+
git-tree-sha1 = "81690084b6198a2e1da36fcfda16eeca9f9f24e4"
50+
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
51+
version = "0.21.1"
52+
53+
[[LibCURL]]
54+
deps = ["LibCURL_jll", "MozillaCACerts_jll"]
55+
uuid = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21"
56+
57+
[[LibCURL_jll]]
58+
deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll", "Zlib_jll", "nghttp2_jll"]
59+
uuid = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0"
60+
61+
[[LibGit2]]
62+
deps = ["Base64", "NetworkOptions", "Printf", "SHA"]
63+
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
64+
65+
[[LibSSH2_jll]]
66+
deps = ["Artifacts", "Libdl", "MbedTLS_jll"]
67+
uuid = "29816b5a-b9ab-546f-933c-edad1886dfa8"
68+
69+
[[Libdl]]
70+
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
71+
72+
[[Logging]]
73+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
74+
75+
[[Markdown]]
76+
deps = ["Base64"]
77+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
78+
79+
[[MbedTLS_jll]]
80+
deps = ["Artifacts", "Libdl"]
81+
uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1"
82+
83+
[[Mmap]]
84+
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
85+
86+
[[MozillaCACerts_jll]]
87+
uuid = "14a3606d-f60d-562e-9121-12d972cd8159"
88+
89+
[[NetworkOptions]]
90+
uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
91+
92+
[[Parsers]]
93+
deps = ["Dates"]
94+
git-tree-sha1 = "223a825cccef2228f3fdbf2ecc7ca93363059073"
95+
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
96+
version = "1.0.16"
97+
98+
[[Pkg]]
99+
deps = ["Artifacts", "Dates", "Downloads", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"]
100+
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
101+
102+
[[Printf]]
103+
deps = ["Unicode"]
104+
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
105+
106+
[[REPL]]
107+
deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"]
108+
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
109+
110+
[[Random]]
111+
deps = ["Serialization"]
112+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
113+
114+
[[SHA]]
115+
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
116+
117+
[[Serialization]]
118+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
119+
120+
[[Sockets]]
121+
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
122+
123+
[[TOML]]
124+
deps = ["Dates"]
125+
uuid = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
126+
127+
[[Tar]]
128+
deps = ["ArgTools", "SHA"]
129+
uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e"
130+
131+
[[Test]]
132+
deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
133+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
134+
135+
[[UUIDs]]
136+
deps = ["Random", "SHA"]
137+
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
138+
139+
[[Unicode]]
140+
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
141+
142+
[[Zlib_jll]]
143+
deps = ["Libdl"]
144+
uuid = "83775a58-1f1d-513f-b197-d71354ab007a"
145+
146+
[[nghttp2_jll]]
147+
deps = ["Artifacts", "Libdl"]
148+
uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d"
149+
150+
[[p7zip_jll]]
151+
deps = ["Artifacts", "Libdl"]
152+
uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0"

docs/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[deps]
2+
ConstraintModels = "841a6ec5-cac3-4c42-9a0a-4b21c9553698"
3+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

0 commit comments

Comments
 (0)