mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
* travis-ci.org is going away, so replace it with github actions * ruby 2.4 is no longer supported upstream, so upgrade to 2.6
21 lines
413 B
YAML
21 lines
413 B
YAML
name: Build Docs
|
|
|
|
on:
|
|
push: {}
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
build:
|
|
if: github.event_name == 'push' || github.event.pull_request.head.repo.owner.login != 'Shopify'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '2.6'
|
|
bundler-cache: true
|
|
- run: bundle exec jekyll build --trace
|