Ignore branches that are no longer maintained when merging up (#1838) #2073
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Coding Standards" | |
on: | |
pull_request: | |
branches: | |
- "v*.*" | |
- "feature/*" | |
push: | |
branches: | |
- "v*.*" | |
- "feature/*" | |
env: | |
PHP_VERSION: "8.1" | |
jobs: | |
coding-standards: | |
name: "Coding Standards" | |
runs-on: "ubuntu-24.04" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
with: | |
submodules: true | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ env.PHP_VERSION }}" | |
- name: "Configure driver" | |
run: .github/workflows/configure.sh | |
- name: "Run clang-format" | |
run: "make format-check" |