diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..ee8cecd1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: julia +os: + - linux +julia: + - release +notifications: + email: false +script: + - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi + - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.test("POMDPs")' diff --git a/test/runtests.jl b/test/runtests.jl new file mode 100644 index 00000000..91a5b399 --- /dev/null +++ b/test/runtests.jl @@ -0,0 +1,2 @@ +# just test to see if the import works +import POMDPs