Skip to content

Commit 34e3d4a

Browse files
committed
Update tests
1 parent d051800 commit 34e3d4a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v4
9+
- name: Build Docker Image
10+
run: |
11+
docker buildx build -f src/docker/Dockerfile --build-arg phpVersion=8.4 -t ${{ vars.BUILDKIT_IMAGE }}:latest --load .
12+
- name: Verify Docker images
13+
run: |
14+
docker images
915
- name: Create Laravel project
1016
run: |
1117
composer create-project laravel/laravel laravel

tests/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
ports:
1313
- 3306:3306
1414
php-fpm:
15-
image: jkaninda/laravel-php-fpm
15+
image: jkaninda/laravel-php-fpm:latest
1616
container_name: php-fpm
1717
restart: unless-stopped
1818
#user: www-data #Use www-data user production usage

0 commit comments

Comments
 (0)