We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdff52e commit 361e13aCopy full SHA for 361e13a
1 file changed
.github/workflows/main.yml
@@ -11,6 +11,7 @@ jobs:
11
runs-on: '${{ matrix.os }}'
12
strategy:
13
matrix:
14
+ ruby: ['2.1', '3.1']
15
include:
16
- os: ubuntu-22.04
17
TESTENV: openldap
@@ -20,9 +21,8 @@ jobs:
20
21
- uses: actions/checkout@v3
22
- uses: ruby/setup-ruby@v1
23
with:
- ruby-version: '3.1' # Not needed with a .ruby-version file
24
+ ruby-version: ${{ matrix.ruby }}
25
bundler-cache: true
- - run: gem install bundler:1.17.3
26
- run: 'if [ "$TESTENV" = "openldap" ]; then ./script/install-openldap; fi'
27
- run: bundle install
28
- run: ./script/cibuild-$TESTENV
0 commit comments