aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/jekyll.yml
blob: 4ca2677526c2275a4cfa1bf7168162c271e10799 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Jekyll

on:
  push:
  pull_request:
  schedule:
    # Weekly, at 4:30 AM on Thursday (somewhat randomly chosen).
    - cron: '30 4 * * 4'
  workflow_dispatch:

jobs:
  bundler:
    runs-on: ubuntu-18.04
    strategy:
      matrix:
        ruby-version: [2.5, 2.6]
    name: 'Bundler / ${{ matrix.ruby-version }}'
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: '${{ matrix.ruby-version }}'
      - name: Install dependencies
        run: bundle install --jobs=3 --retry=3
      - name: jekyll build
        run: bundle exec jekyll build --config _config.yml,_config_dev.yml --drafts

  github_pages:
    runs-on: ubuntu-18.04
    strategy:
      matrix:
        ruby-version: [2.5, 2.6]
    name: 'github-pages / ${{ matrix.ruby-version }}'
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: '${{ matrix.ruby-version }}'
      - name: Install dependencies
        run: |
          rm -f -- Gemfile Gemfile.lock
          gem install github-pages
      - name: jekyll build
        run: jekyll build

  verify:
    runs-on: ubuntu-18.04
    strategy:
      matrix:
        ruby-version: [2.5, 2.6]
    name: 'Verify / ${{ matrix.ruby-version }}'
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: '${{ matrix.ruby-version }}'
      - name: Install dependencies
        run: bundle install --jobs=3 --retry=3
      - name: Check integrity
        run: |
          nohup bundle exec jekyll serve --config _config.yml,_config_dev.yml --drafts &
          sleep 3 && wget --no-verbose --recursive --convert-links --adjust-extension --directory-prefix=/tmp -- http://localhost:4000/