Pin logger to <= 1.5.3 due to incompatibility of logger 1.6.0 with Jekyll 4.3.2 #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
test-jekyll-geolexica: | |
name: Jekyll ${{ matrix.jekyll }} on Ruby ${{ matrix.ruby }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
jekyll: [ "4.0", "4.1", "4.2" ] | |
ruby: [ "2.7", "3.0", "3.1" ] | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
env: | |
BUNDLE_GEMFILE: gemfiles/Jekyll-${{ matrix.jekyll }}.gemfile | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler: 2.3.22 | |
bundler-cache: true | |
- run: bundle exec rspec |