We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35c0b59 commit 9b60c0eCopy full SHA for 9b60c0e
.github/workflows/ci.yml
@@ -56,6 +56,13 @@ jobs:
56
doc-build-others:
57
runs-on: ubuntu-latest
58
name: Rails Doc Build (older versions)
59
+ strategy:
60
+ matrix:
61
+ include:
62
+ - ruby-version: 2.7
63
+ build-rails-versions: "5.2,6.0,6.1"
64
+ - ruby-version: 3.3
65
+ build-rails-versions: "7.0,7.1,7.2,8.0"
66
steps:
67
- uses: actions/checkout@v4
68
with:
@@ -68,7 +75,7 @@ jobs:
75
done
69
76
- uses: ruby/setup-ruby@v1
70
77
71
- ruby-version: 2.7
78
+ ruby-version: ${{ matrix.ruby-version }}
72
79
bundler-cache: true
73
80
- name: Doc Build
74
- run: rake 'build_multi[v5.2,v6.0,v6.1]'
81
+ run: rake 'build_multi[${{ matrix.build-rails-versions }}]'
0 commit comments