Skip to content

Commit 6aa8a57

Browse files
try tests with original php image
1 parent 2aa2b66 commit 6aa8a57

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "PHP",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/php:1-8.2-bullseye",
6+
"image": "mcr.microsoft.com/devcontainers/php:1-8.3-bullseye",
77
"customizations": {
88
"vscode": {
99
"extensions": [

.github/workflows/github-release.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,13 @@ jobs:
5050
php-version: ["8.1", "8.2", "8.3", "8.4"]
5151
runs-on: ubuntu-latest
5252
container:
53-
image: mcr.microsoft.com/devcontainers/php:1-${{ matrix.php-version }}-bullseye
53+
image: php:${{ matrix.php-version }}-cli
5454
steps:
5555
- uses: actions/checkout@v4
56-
- name: composer install
57-
run: composer install
56+
- name: install dependencies
57+
uses: php-actions/composer@v6
58+
with:
59+
php_version: ${{ matrix.php-version }}
5860
- name: phpunit
5961
run: ./vendor/bin/phpunit --testdox tests/
6062

0 commit comments

Comments
 (0)