diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-12 01:09:34 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-12 18:15:23 +0300 |
commit | a0ffb7a32d8ca9cb6eb9154c113539f339b2b564 (patch) | |
tree | 29e1571c110d32ff47d3318d24f8d5d00fc6772f | |
parent | Travis: add configuration (diff) | |
download | sorting-algorithms-a0ffb7a32d8ca9cb6eb9154c113539f339b2b564.tar.gz sorting-algorithms-a0ffb7a32d8ca9cb6eb9154c113539f339b2b564.zip |
Travis: check integrity using wget
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 4e6f0dc..704ca11 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,3 +23,9 @@ jobs: - rm -f -- Gemfile Gemfile.lock - gem install github-pages script: jekyll build + - stage: Verify + name: Check integrity + install: bundle install --jobs=3 --retry=3 + script: + - nohup bundle exec jekyll serve --config _config.yml,_config_dev.yml --drafts & + - sleep 3 && wget --no-verbose --recursive --convert-links --adjust-extension --directory-prefix=/tmp -- http://localhost:4000/ |