18 lines
337 B
YAML
18 lines
337 B
YAML
|
matrix:
|
||
|
JULIA_VERSION:
|
||
|
- "1.0"
|
||
|
- "1.6"
|
||
|
- "1.10"
|
||
|
- "1"
|
||
|
- "rc"
|
||
|
|
||
|
steps:
|
||
|
test:
|
||
|
image: julia:${JULIA_VERSION}
|
||
|
pull: true
|
||
|
when:
|
||
|
event: [pull_request, push]
|
||
|
commands:
|
||
|
- julia -e 'using Pkg; Pkg.activate(pwd()); Pkg.instantiate()'
|
||
|
- julia -e 'using Pkg; Pkg.activate(pwd()); Pkg.test()'
|