Skip to content

Commit

Permalink
Add Julia package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
tamasgal committed Feb 3, 2023
1 parent 0b0bf4d commit b98e006
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ test-py3.10:
- make test
<<: *junit_definition

test-julia-1.6:
image: docker.km3net.de/base/julia:1.6
stage: test
script:
- julia -e 'import Pkg; Pkg.develop(path=".")'

code-style:
image: docker.km3net.de/base/python:3.7
stage: test
Expand Down
4 changes: 4 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
name = "KM3NeTTestData"
uuid = "3249b543-581e-4f22-b7da-6c2cdf549b24"
authors = ["Tamas Gal <[email protected]>"]
version = "0.4.3"
9 changes: 9 additions & 0 deletions src/KM3NeTTestData.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module KM3NeTTestData

export datapath

const DATA_DIR = joinpath(@__DIR__, "..", "km3net_testdata", "data")

datapath(p...) = joinpath(DATA_DIR, p...)

end

0 comments on commit b98e006

Please sign in to comment.