diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 62f5f05..0000000 --- a/.travis.yml +++ /dev/null @@ -1,27 +0,0 @@ -sudo: false -language: julia -os: - - osx - - linux - - freebsd - -julia: - - 1.3 - - 1 - - nightly - -coveralls: true - -notifications: - email: false - -branches: - only: - - master - - gh-pages # For building documentation - - /^testing-.*$/ # testing branches - - /^v[0-9]+\.[0-9]+\.[0-9]+$/ # version tags - -cache: - directories: - - $HOME/.julia/artifacts diff --git a/README.md b/README.md index fd19a19..9e3f520 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Dierckx.jl *Julia library for 1-d and 2-d splines* -[![Build Status](https://img.shields.io/travis/kbarbary/Dierckx.jl.svg?style=flat-square&label=CI)](https://github.com/kbarbary/Dierckx.jl/actions?query=workflow%3ACI) +[![Build Status](https://img.shields.io/travis/kbarbary/Dierckx.jl.svg?style=flat-square&logo=github&label=CI)](https://github.com/kbarbary/Dierckx.jl/actions?query=workflow%3ACI) [![Coverage Status](http://img.shields.io/coveralls/kbarbary/Dierckx.jl.svg?style=flat-square)](https://coveralls.io/r/kbarbary/Dierckx.jl?branch=master) This is a Julia wrapper for the diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 8b8c7ab..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,46 +0,0 @@ -environment: - matrix: - - julia_version: 1.3 - - julia_version: 1 - - julia_version: nightly - -platform: - - x86 # 32-bit - - x64 # 64-bit - -# # Uncomment the following lines to allow failures on nightly julia -# # (tests will run but not make your overall status red) -# matrix: -# allow_failures: -# - julia_version: latest - -branches: - only: - - master - - /release-.*/ - -cache: - - '%USERPROFILE%\.julia\artifacts' - -notifications: - - provider: Email - on_build_success: false - on_build_failure: false - on_build_status_changed: false - -install: - - ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1")) - -build_script: - - echo "%JL_BUILD_SCRIPT%" - - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" - -test_script: - - echo "%JL_TEST_SCRIPT%" - - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%" - -# # Uncomment to support code coverage upload. Should only be enabled for packages -# # which would have coverage gaps without running on Windows -# on_success: -# - echo "%JL_CODECOV_SCRIPT%" -# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"