Skip to content

Update rake requirement from ~> 13.0.1 to ~> 13.1.0 #10

Update rake requirement from ~> 13.0.1 to ~> 13.1.0

Update rake requirement from ~> 13.0.1 to ~> 13.1.0 #10

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.6.6]
jekyll: [3.0, 4.0]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
env:
JEKYLL_VERSION: ${{ matrix.jekyll }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake spec