Sha256: 29f1791b760be492f333d6dafe550d6e293e512dea96ac0d17e1e4d59869721b

Contents?: true

Size: 917 Bytes

Versions: 1

Compression:

Stored size: 917 Bytes

Contents

---
os: linux
dist: focal
language: ruby
cache: bundler
rvm:
  - 2.7.1

# adopt future bundler 3 config style
before_install:
  - bundle config set deployment 'true' # expect Gemfile.lock to be up-to-date for testing
  - bundle config set path ${BUNDLE_PATH:-vendor/bundle}
  - bundle config set jobs 3
  - bundle config set retry 3
install: bundle install

jobs:
  include:
  - env: CHECK=rspec
    script:
    - bundle exec rake
  - env: CHECK=sorbet
    script:
    - bundle exec srb tc --ignore=/vendor
  - env: CHECK=build
    gemfile: spec/fixtures/test_site/Gemfile
    script:
    - (cd spec/fixtures/test_site && bundle exec jekyll build --strict --trace --verbose)
    - (cd spec/fixtures/test_site && find _site -type f && echo -e '\n===\n' && cat _site/gallery_one/index.html && file _site/gallery_two/third/Morgenspaziergang-3.jpg_thumb.jpg)

# only branch-test merges to main
branches:
  only:
  - main

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cheesy-gallery-0.5.0 .travis.yml