mirror of
https://github.com/MillironX/XAM.jl.git
synced 2024-11-14 22:33:14 +00:00
12 lines
234 B
Julia
12 lines
234 B
Julia
|
get(ENV, "TRAVIS_OS_NAME", "") == "linux" || exit()
|
||
|
get(ENV, "TRAVIS_JULIA_VERSION", "") == "1.3" || exit()
|
||
|
|
||
|
using Pkg
|
||
|
Pkg.instantiate()
|
||
|
|
||
|
using Coverage
|
||
|
|
||
|
cd(joinpath(@__DIR__, "..")) do
|
||
|
Codecov.submit(Codecov.process_folder())
|
||
|
end
|