Skip to content

Commit da765e5

Browse files
committed
Add standard files
1 parent 0e7a03d commit da765e5

8 files changed

Lines changed: 124 additions & 0 deletions

File tree

.codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: false

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.jl.cov
2+
*.jl.*.cov
3+
*.jl.mem

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
language: julia
2+
os:
3+
- linux
4+
- osx
5+
julia:
6+
- 1.0
7+
- 1.1
8+
- nightly
9+
notifications:
10+
email: false
11+
branches:
12+
only:
13+
- master
14+
- /release-.*/
15+
- /v(\d+)\.(\d+)\.(\d+)/
16+
matrix:
17+
allow_failures:
18+
- julia: nightly
19+
after_success:
20+
- julia -e 'cd(Pkg.dir("QuerySQLite")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

LICENSE.md

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

Project.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
name = "QuerySQLite"
22
uuid = "57f923c0-76be-11e9-095d-c942eaffc94b"
33
version = "0.1.0"
4+
5+
[deps]
6+
QueryableBackend = "0898d9ac-042b-5d31-8dcc-959fb3365f19"
7+
SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9"

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# QuerySQLite
2+
3+
[![Project Status: Concept – Minimal or no implementation has been done yet, or the repository is only intended to be a limited example, demo, or proof-of-concept.](https://www.repostatus.org/badges/latest/concept.svg)](https://www.repostatus.org/#concept)
4+
[![Build Status](https://travis-ci.org/queryverse/QuerySQLite.jl.svg?branch=master)](https://travis-ci.org/queryverse/QuerySQLite.jl)
5+
[![Build status](https://ci.appveyor.com/api/projects/status/vdf4sxjkcw42kxtn/branch/master?svg=true)](https://ci.appveyor.com/project/queryverse/QuerySQLite/branch/master)
6+
[![codecov.io](http://codecov.io/github/queryverse/QuerySQLite.jl/coverage.svg?branch=master)](http://codecov.io/github/queryverse/QuerySQLite.jl?branch=master)

appveyor.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
environment:
2+
matrix:
3+
- julia_version: 1.0
4+
- julia_version: 1.1
5+
- julia_version: nightly
6+
7+
platform:
8+
- x86 # 32-bit
9+
- x64 # 64-bit
10+
11+
matrix:
12+
allow_failures:
13+
- julia_version: nightly
14+
15+
branches:
16+
only:
17+
- master
18+
- /release-.*/
19+
- /v(\d+)\.(\d+)\.(\d+)/
20+
21+
notifications:
22+
- provider: Email
23+
on_build_success: false
24+
on_build_failure: false
25+
on_build_status_changed: false
26+
27+
install:
28+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
29+
30+
build_script:
31+
- echo "%JL_BUILD_SCRIPT%"
32+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
33+
34+
test_script:
35+
- echo "%JL_TEST_SCRIPT%"
36+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
37+
38+
# # Uncomment to support code coverage upload. Should only be enabled for packages
39+
# # which would have coverage gaps without running on Windows
40+
# on_success:
41+
# - echo "%JL_CODECOV_SCRIPT%"
42+
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

test/runtests.jl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using QuerySQLite
2+
using Test
3+
4+
@testset "QuerySQLite" begin
5+
6+
@test true
7+
8+
end

0 commit comments

Comments
 (0)