mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-19 01:48:47 +00:00
33 lines
588 B
YAML
33 lines
588 B
YAML
language: julia
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
julia:
|
|
- 1.0
|
|
- 1.4
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- hdf5-tools
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- julia: nightly
|
|
|
|
jobs:
|
|
include:
|
|
- stage: "Documentation"
|
|
os: linux
|
|
script:
|
|
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
|
|
after_success:
|
|
- julia --project=docs/ docs/make.jl
|
|
|
|
after_success:
|
|
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
|
|
|