-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Travis updated to test with Julia 1.2 and allow to fail with nightly.
- Loading branch information
TeroFrondelius
committed
Aug 24, 2019
1 parent
9fe6398
commit 43ceb24
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
language: julia | ||
|
||
os: | ||
- linux | ||
|
||
julia: | ||
- 1.0 | ||
- 1.2 | ||
- nightly | ||
|
||
matrix: | ||
allow_failures: | ||
- julia: nightly | ||
fast_finish: true | ||
notifications: | ||
email: false | ||
script: | ||
- julia --project -e 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/JuliaFEM/Materials.jl")); | ||
Pkg.build(); | ||
Pkg.test(; coverage=true)' | ||
|
||
after_success: | ||
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())' |