Skip to content

Commit 5607a17

Browse files
committed
Merge branch 'feature/update-deps'
2 parents dd9d5a7 + 5a57561 commit 5607a17

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Continuous Integration'
1+
name: 'CI'
22
on:
33
push:
44
branches-ignore:
@@ -18,23 +18,20 @@ on:
1818
- '**'
1919

2020
jobs:
21-
ci:
22-
runs-on: ${{ matrix.os }}
21+
build:
22+
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
os: [ubuntu-latest, macos-latest]
26-
25+
ruby: [2.5, 2.6, 2.7, 3]
2726
steps:
2827
- name: Checkout
2928
uses: actions/checkout@v2
3029
with:
3130
fetch-depth: 0 # for posts's lastmod
32-
3331
- name: Setup Ruby
3432
uses: ruby/setup-ruby@v1
3533
with:
36-
ruby-version: 2.7
34+
ruby-version: ${{ matrix.ruby }}
3735
bundler-cache: true
38-
3936
- name: Test Site
4037
run: bash tools/deploy.sh --dry-run

jekyll-theme-chirpy.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ Gem::Specification.new do |spec|
1616

1717
spec.metadata = {
1818
"bug_tracker_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/issues",
19-
"documentation_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/blob/master/README.md",
19+
"documentation_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/#readme",
2020
"homepage_uri" => "https://cotes2020.github.io/chirpy-demo",
2121
"source_code_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy",
2222
"wiki_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/wiki",
2323
"plugin_type" => "theme"
2424
}
2525

26-
spec.required_ruby_version = ">= 2.4"
26+
spec.required_ruby_version = ">= 2.5"
2727

2828
spec.add_runtime_dependency "jekyll", "~> 4.1"
2929
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"

0 commit comments

Comments
 (0)