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 5dffbf2 commit 98914bcCopy full SHA for 98914bc
.github/workflows/test.yml
@@ -70,6 +70,9 @@ jobs:
70
services:
71
nginxproxymanager:
72
image: docker.io/jc21/nginx-proxy-manager:latest
73
+ env:
74
+ INITIAL_ADMIN_EMAIL: 'admin@example.com'
75
+ INITIAL_ADMIN_PASSWORD: 'changeme'
76
ports:
77
- 80:80
78
- 81:81
@@ -100,8 +103,8 @@ jobs:
100
103
- name: Run Acceptance Tests
101
104
run: go test -v -cover ./internal/provider/
102
105
env:
- NGINXPROXYMANAGER_URL: "http://localhost:81"
- NGINXPROXYMANAGER_USERNAME: "admin@example.com"
- NGINXPROXYMANAGER_PASSWORD: "changeme"
106
- TF_ACC: "1"
+ NGINXPROXYMANAGER_URL: 'http://localhost:81'
107
+ NGINXPROXYMANAGER_USERNAME: 'admin@example.com'
108
+ NGINXPROXYMANAGER_PASSWORD: 'changeme'
109
+ TF_ACC: '1'
110
timeout-minutes: 10
0 commit comments