Skip to content

sync

sync #68

Workflow file for this run

name: Syntax Checks
on: [ push, pull_request, workflow_dispatch ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: ["7.4", "8.0"]
name: Syntax Checks Under PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run Syntax Checks
run: docker run --rm -v "$(pwd):/project" -w /project -i jakzal/phpqa:php${{ matrix.php }} phplint src