Files
liquid/.github/workflows/docs.yml
Dylan Thacker-Smith 40bf603bfb CI: Use github actions and non-EOL ruby version
* 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
2021-03-08 10:25:28 -08:00

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