We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0d7e22 commit e873b3aCopy full SHA for e873b3a
.github/workflows/test.yml
@@ -27,6 +27,12 @@ jobs:
27
ports:
28
- 389:389
29
- 636:636
30
+ options: >-
31
+ --health-cmd "ldapwhoami -x"
32
+ --health-interval 10s
33
+ --health-start-period 60s
34
+ --health-timeout 10s
35
+ --health-retries 6
36
strategy:
37
matrix:
38
ruby:
@@ -59,6 +65,9 @@ jobs:
59
65
- name: Set up /etc/hosts
60
66
run: |
61
67
echo '127.0.0.1 ldap.example.org' | sudo tee -a /etc/hosts
68
+ sudo apt-get install -y ldap-utils
69
+ ldapsearch -x -H ldap://localhost:389 -b '' -s base namingContexts || \
70
+ ldapsearch -x -H ldap://ldap.example.org:389 -b '' -s base namingContexts
62
71
- name: Install dependencies
63
72
run: pwd; bundle install
64
73
- name: Run tests
0 commit comments