Skip to content

Commit 00ad357

Browse files
committed
ci: update matrix environment
1 parent dd9d5a7 commit 00ad357

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
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

0 commit comments

Comments
 (0)