Skip to content

Docker tweaks

Docker tweaks #146

Workflow file for this run

name: CI
on: pull_request
jobs:
# WAS: michaelw90/PHP-Lint@master, stuck on docker PHP7.3!
# WORKS for: StephaneBour/[email protected] = simply "php -l"
phplint:
name: PHP Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: overtrue/[email protected]
php-codesniffer:
name: PHP CS
needs: [ phplint ]
runs-on: ubuntu-22.04
strategy:
matrix:
php_version: [7.4, 8.0, 8.1, 8.2, 8.3]
steps:
- name: Codesniffer
uses: pipeline-components/[email protected]
with:
options: -s -p --colors --extensions=php --runtime-set testVersion ${{matrix.php_version}}