blob: 5a5008cfa75ff835b7e71c0b7139bee1dd795c8a (
plain) (
tree)
|
|
name: Test
on:
push:
pull_request:
schedule:
# Weekly, at 5:45 AM on Thursday (somewhat randomly chosen).
- cron: '45 5 * * 4'
workflow_dispatch:
jobs:
bundler:
runs-on: ubuntu-18.04
strategy:
matrix:
ruby-version: [2.5, 2.6, 2.7]
version: [Gemfile, latest]
include:
- {version: Gemfile, gemfile: Gemfile}
- {version: latest, gemfile: .ci/Gemfile}
name: 'Build / ${{ matrix.ruby-version }} / ${{ matrix.version }}'
env:
BUNDLE_GEMFILE: '${{ matrix.gemfile }}'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '${{ matrix.ruby-version }}'
bundler-cache: true
- name: jekyll build
run: bundle exec jekyll build
|