Skip to content

Commit fdd9a1c

Browse files
committed
Add matrix for testing with Ruby 3.3 and 3.4
1 parent 2eb5a70 commit fdd9a1c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ on:
55

66
jobs:
77
jekyll:
8+
strategy:
9+
matrix:
10+
ruby_version: ['3.3', '3.4']
811
runs-on: ubuntu-latest
912
steps:
1013
- uses: actions/checkout@v4
1114

1215
# Use GitHub Actions' cache to shorten build times and decrease load on servers
1316
- uses: ruby/setup-ruby@v1
1417
with:
15-
ruby-version: '3.3'
18+
ruby-version: ${{ matrix.ruby_version }}
1619
bundler-cache: true
1720

1821
# Standard usage

0 commit comments

Comments
 (0)