Skip to content

Commit

Permalink
Updated Dockerfile and phpunit.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
eneadm committed Apr 3, 2024
1 parent f37c8b7 commit 9b24563
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .docker/php8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Specify the image
FROM php:8.3-cli

# Update dependencies
RUN apt-get update \
# Install Zip
&& apt-get install -y libzip-dev zip \
&& docker-php-ext-install zip

# Install Composer
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer

# Specify the working directory
WORKDIR /app
4 changes: 3 additions & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
dependencies: [ 'lowest', 'highest' ]
exclude:
- php: '8.0'
Expand All @@ -20,6 +20,8 @@ jobs:
dependencies: 'lowest'
- php: '8.2'
dependencies: 'lowest'
- php: '8.3'
dependencies: 'lowest'

env:
PHP_VERSION: ${{ matrix.php }}
Expand Down

0 comments on commit 9b24563

Please sign in to comment.