Skip to content

docker: bump php from 8.3.9-cli-alpine to 8.3.10-cli-alpine #539

docker: bump php from 8.3.9-cli-alpine to 8.3.10-cli-alpine

docker: bump php from 8.3.9-cli-alpine to 8.3.10-cli-alpine #539

Workflow file for this run

name: PHP
on: push
jobs:
build:
strategy:
matrix:
php-version: [8.2, 8.3]
runs-on: ubuntu-latest
name: Build
steps:
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: make install
- name: Lint
run: make lint
- name: Static analysis
run: |
make static-phpstan
make static-phpcs
- name: Test
run: make test