Skip to content

Check MMDB_get_metadata_as_entry_data_list return value #469

Check MMDB_get_metadata_as_entry_data_list return value

Check MMDB_get_metadata_as_entry_data_list return value #469

Workflow file for this run

name: PHP Lints
on:
push:
pull_request:
schedule:
- cron: '45 3 * * SUN'
permissions: {}
jobs:
run:
runs-on: ubuntu-latest
name: "PHP Lints"
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: Validate composer.json
run: composer validate
- name: Lint with php-cs-fixer
run: vendor/bin/php-cs-fixer fix --verbose --diff --dry-run
- name: Lint with phpcs
run: vendor/bin/phpcs --standard=.phpcs-ruleset.xml src/
- name: Lint with phpstan
run: vendor/bin/phpstan analyze