aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/jekyll.yml
blob: 7e3e811bec9355d5a4c9ea837c4b9572ccc44eaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Jekyll

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-latest
    strategy:
      matrix:
        ruby-version: [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