Skip to content

Commit

Permalink
adding automated testing for php 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jgivoni committed Oct 27, 2023
1 parent 25f5e39 commit 34183f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
job1:
strategy:
matrix:
php_version: ["8.2"]
php_version: ["8.1", "8.2"]
name: PhpStan static analyzer ${{ matrix.php_version }}
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
job2:
strategy:
matrix:
php_version: ["8.2"]
php_version: ["8.1", "8.2"]
name: PhpUnit unit tests ${{ matrix.php_version }}
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dockerfile to build image for development and testing
ARG PHP_VERSION=8.2
ARG PHP_VERSION=8.1
FROM php:${PHP_VERSION}-cli-alpine

ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
Expand Down

0 comments on commit 34183f0

Please sign in to comment.