Skip to content

Commit 99f69ad

Browse files
authored
Use the matrix not the env
1 parent cb557f3 commit 99f69ad

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
with:
2525
ruby-version: ${{ matrix.ruby }}
2626
bundler-cache: true
27-
- run: 'if [ "${{ env.TESTENV }}" = "openldap" ]; then ./script/install-openldap; fi'
27+
- run: 'if [ "${{ matrix.TESTENV }}" = "openldap" ]; then ./script/install-openldap; fi'
2828
- run: bundle install
29-
- run: ./script/cibuild-${{ env.TESTENV }}
30-
29+
- run: ./script/cibuild-${{ matrix.TESTENV }}

0 commit comments

Comments
 (0)