Skip to content

Merge v1.19 into master (#1554) #1324

Merge v1.19 into master (#1554)

Merge v1.19 into master (#1554) #1324

Workflow file for this run

name: "Coding Standards"
on:
pull_request:
branches:
- "v*.*"
- "master"
- "feature/*"
push:
branches:
- "v*.*"
- "master"
- "feature/*"
jobs:
coding-standards:
name: "Coding Standards"
runs-on: "ubuntu-20.04"
strategy:
matrix:
php-version:
- "7.4"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
with:
submodules: true
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
- name: "Configure driver"
run: .github/workflows/configure.sh
- name: "Run clang-format"
run: "make format-check"