Skip to content

Commit 399bca6

Browse files
committed
Add Project.toml file
1 parent 81157ec commit 399bca6

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ git:
1313

1414
## uncomment the following lines to allow failures on nightly julia
1515
## (tests will run but not make your overall status red)
16-
#matrix:
17-
# allow_failures:
18-
# - julia: nightly
16+
matrix:
17+
allow_failures:
18+
- julia: nightly
1919

2020
# uncomment the following lines to override the default test script
21-
#script:
22-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
23-
# - julia -e 'Pkg.clone("https://github.com/JuliaString/StrTables.jl.git"); Pkg.clone(pwd()); Pkg.build("Unicode_Entities"); Pkg.test("Unicode_Entities"; coverage=true)'
21+
script:
22+
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
23+
- julia -e 'f = VERSION < v"0.7.0-DEV" ; f || (using Pkg) ; const clone = ifelse(f, Pkg.clone, Pkg.add) ; Pkg.add("StrTables"); clone(pwd()); Pkg.build("Unicode_Entities"); Pkg.test("Unicode_Entities"; coverage=true)'
2424
after_success:
2525
# push coverage results to Coveralls
2626
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("Unicode_Entities")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

Project.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
desc = "Entities from Unicode data tables"
2+
keywords = ["Entities", "Unicode"]
3+
license = "MIT"
4+
name = "Unicode_Entities"
5+
repo = "https://github.com/JuliaString/Unicode_Entities.jl.git"
6+
deps = ["Pkg", "StrTables", "Test", "Unicode"]
7+
git-tree-sha1 = "8f5e34a7e433425b46154e362e72215362004c49"
8+
uuid = "a8aa15d3-c567-5e9f-b6cc-4b0f97f09cf7"
9+
version = "0.2.2"

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ environment:
77

88
## uncomment the following lines to allow failures on nightly julia
99
## (tests will run but not make your overall status red)
10-
#matrix:
11-
# allow_failures:
12-
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
13-
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
10+
matrix:
11+
allow_failures:
12+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
13+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
1414

1515
branches:
1616
only:

0 commit comments

Comments
 (0)