We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c239db commit 102588aCopy full SHA for 102588a
2 files changed
.github/workflows/tests_e2e.yml
@@ -18,6 +18,12 @@ jobs:
18
working-directory: api
19
run: composer install --no-interaction --prefer-dist --ignore-platform-reqs
20
21
+ - name: Log in to Docker Hub
22
+ uses: docker/login-action@v3
23
+ with:
24
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
25
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
26
+
27
- name: Build and start the E2E stack
28
run: docker compose -f docker-compose.e2e.yml up -d --build
29
.github/workflows/tests_phpunit.yml
@@ -47,6 +47,12 @@ jobs:
47
steps:
48
- uses: actions/checkout@v4
49
50
51
52
53
54
55
56
- name: Build test images
57
run: docker compose -f docker-compose.test.yml build
58
0 commit comments