You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
- julia -e 'using Pkg; Pkg.add(PackageSpec(name="Documenter", version="0.19"))'
&& julia docs/make.jl
# keep the below for testing reasons
# script: echo "Julia $TRAVIS_JULIA_VERSION"
jobs:
include:
- name: "Changelog Check"
if: type IN (pull_request)
language: minimal
before_install:
before_script:
script:
- git fetch origin master:master
# show all changed files for debugging
- git diff HEAD master --name-only
# check if CHANGELOG.md has been modified
- git diff HEAD master --name-only | grep ^CHANGELOG.md$ || (ret=$? && echo -e "${RED}${BOLD}You didn't provide the details of your change in CHANGELOG.md" && exit $ret)