Skip to content

Bump urllib3 from 1.26.19 to 2.6.3 #39

Bump urllib3 from 1.26.19 to 2.6.3

Bump urllib3 from 1.26.19 to 2.6.3 #39

Workflow file for this run

name: PHPStan
on: [workflow_dispatch, pull_request]
env:
PLUGIN_CODE: ResizeImage42
PLUGIN_PACKAGE_NAME: 'ec-cube/resizeimage42'
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
eccube-versions: ['4.2', '4.3']
php-versions: [ '8.1' ]
database: [ 'mysql' ]
include:
- database: mysql
database_url: mysql://root:password@127.0.0.1:3306/eccube_db
database_server_version: 5.7
database_charset: utf8mb4
services:
mysql:
image: mysql:5.7
env:
MYSQL_ROOT_PASSWORD: password
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: kurozumi/eccube-plugin-phpstan@main
with:
plugin-code: ${{ env.PLUGIN_CODE }}
plugin-package-name: ${{ env.PLUGIN_PACKAGE_NAME }}