Skip to content

chore(deps): update codecov/codecov-action action to v4 (#66) #195

chore(deps): update codecov/codecov-action action to v4 (#66)

chore(deps): update codecov/codecov-action action to v4 (#66) #195

name: "Coding Standards"
on:
pull_request:
push:
branches:
- "master"
jobs:
coding-standards:
name: "Coding Standards"
runs-on: "ubuntu-22.04"
strategy:
matrix:
php-version:
- "8.2"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
tools: "cs2pr"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v1"
- name: "Run PHP_CodeSniffer"
run: "vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr"