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 fefe9eb commit e0d7e22Copy full SHA for e0d7e22
.github/workflows/test.yml
@@ -19,16 +19,14 @@ jobs:
19
INTEGRATION: openldap
20
runs-on: ubuntu-latest
21
services:
22
- openldap:
+ 'ldap.example.org':
23
image: osixia/openldap:1.4.0
24
env:
25
LDAP_SEED_INTERNAL_LDIF_PATH: ${{ github.workspace }}/test/fixtures/ldif
26
LDAP_TLS_VERIFY_CLIENT: try
27
ports:
28
- 389:389
29
- 636:636
30
- options: >-
31
- --hostname ldap.example.org
32
strategy:
33
matrix:
34
ruby:
@@ -58,6 +56,9 @@ jobs:
58
56
# osixia/openldap:1.3.0 \
59
57
# --copy-service \
60
# --loglevel debug \
+ - name: Set up /etc/hosts
+ run: |
61
+ echo '127.0.0.1 ldap.example.org' | sudo tee -a /etc/hosts
62
- name: Install dependencies
63
run: pwd; bundle install
64
- name: Run tests
0 commit comments