Skip to content

Update InternetRequestResult.php #74

Update InternetRequestResult.php

Update InternetRequestResult.php #74

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
name: PHPStan analysis
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- "8.2"
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@2.21.1
with:
php-version: ${{ matrix.php }}
- name: Restore Composer package cache
id: composer-cache
uses: actions/cache@v3
with:
path: "~/.cache/composer"
key: "php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}"
restore-keys: "php-${{ matrix.php }}-composer-"
- name: Install PHPStan Composer dependencies
run: composer install --prefer-dist --no-interaction --ignore-platform-reqs
- name: Run PHPStan
run: vendor/bin/phpstan analyze