aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/.github/workflows/ci.yml
blob: 2962fb7e3f1225638b93df8f6a1f006be3dd6453 (plain) (tree)
1
2
3
4
5
6
7
8
9
        






                    
        

             
                                     



                                                   
                          
                                                                      

                                             





                                 
                                                    
                             

                                              
name: CI

on:
  push:
  pull_request:
  workflow_dispatch:

jobs:
  build:
    strategy:
      matrix:
        ruby-version: [2.5, 2.6, 2.7]
        version: [Gemfile, latest]
        include:
          - {version: Gemfile, gemfile: Gemfile}
          - {version: latest, gemfile: .ci/Gemfile}
    runs-on: ubuntu-latest
    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 --drafts