-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (34 loc) · 970 Bytes
/
test.yml
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
name: Test
on:
push:
branches: [ main, next, update-ci ]
pull_request:
branches: [ main ]
jobs:
test:
env:
BUNDLE_GEMFILE: test/gemfiles/${{ matrix.gemfile }}.gemfile
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby-version }}
- name: Run tests with ${{ matrix.gemfile }}
run: bundle exec rake
strategy:
matrix:
exclude:
- ruby-version: '3.0'
gemfile: jekyll36
- ruby-version: '3.0'
gemfile: jekyll37
- ruby-version: '3.1'
gemfile: jekyll36
- ruby-version: '3.1'
gemfile: jekyll37
gemfile: [ jekyll36, jekyll37, jekyll38, jekyll39, jekyll40, jekyll41, jekyll42 ]
os: [ ubuntu-latest ]
ruby-version: [ 2.6, 2.7, '3.0', '3.1' ]