From adabfb8bf5ab8618e87d3345aa573463ae63cf8f Mon Sep 17 00:00:00 2001 From: Ben Balter Date: Thu, 16 Sep 2021 14:59:22 -0400 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2982ca4..02c69f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,7 @@ jobs: strategy: matrix: ruby-version: ['2.7', '3.0'] + jekyll-version: ["~> 3.0", "~> 4.0"] steps: - uses: actions/checkout@v2 @@ -21,7 +22,9 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - bundler-cache: true # runs 'bundle install' and caches installed gems automatically + bundler-cache: true + env: + JEKYLL_VERSION: ${{ matrix.jekyll-version }} - name: Run tests run: script/cibuild