File tree 3 files changed +30
-14
lines changed 3 files changed +30
-14
lines changed Original file line number Diff line number Diff line change
1
+ name : Continuous Integration
2
+ on :
3
+ push :
4
+ branches :
5
+ - " 2.5-stable"
6
+ pull_request :
7
+ branches :
8
+ - " 2.5-stable"
9
+ jobs :
10
+ build :
11
+ name : " Test with Jekyll ${{ matrix.jekyll }} (Ruby ${{ matrix.ruby }})"
12
+ runs-on : ubuntu-latest
13
+ strategy :
14
+ fail-fast : false
15
+ matrix :
16
+ jekyll : ["~> 3.9", "~> 4.2"]
17
+ ruby : ["2.7", "3.3"]
18
+ env :
19
+ JEKYLL_VERSION : ${{ matrix.jekyll }}
20
+ steps :
21
+ - name : Checkout Repository
22
+ uses : actions/checkout@v2
23
+ - name : " Set Up Ruby ${{ matrix.ruby }}"
24
+ uses : ruby/setup-ruby@v1
25
+ with :
26
+ ruby-version : ${{ matrix.ruby }}
27
+ bundler-cache : true
28
+ - name : Run tests
29
+ run : script/cibuild
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ source "https://rubygems.org"
4
4
gemspec
5
5
6
6
gem "jekyll" , ENV [ "JEKYLL_VERSION" ] if ENV [ "JEKYLL_VERSION" ]
7
+ gem "kramdown-parser-gfm" if ENV [ "JEKYLL_VERSION" ] == "~> 3.9"
You can’t perform that action at this time.
0 commit comments