Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/arginfo-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@ on:
- "master"
- "feature/*"

env:
PHP_VERSION: "8.2"

jobs:
check-arginfo:
name: "Check generated arginfo files"
runs-on: "ubuntu-20.04"

strategy:
matrix:
php-version:
- "8.2"

steps:
- name: "Checkout"
uses: "actions/checkout@v4"
Expand All @@ -31,7 +29,7 @@ jobs:
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
php-version: "${{ env.PHP_VERSION }}"

- name: "Run phpize"
run: phpize
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@ on:
- "master"
- "feature/*"

env:
PHP_VERSION: "7.4"

jobs:
coding-standards:
name: "Coding Standards"
runs-on: "ubuntu-20.04"

strategy:
matrix:
php-version:
- "7.4"

steps:
- name: "Checkout"
uses: "actions/checkout@v4"
Expand All @@ -31,7 +29,7 @@ jobs:
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
php-version: "${{ env.PHP_VERSION }}"

- name: "Configure driver"
run: .github/workflows/configure.sh
Expand Down
Loading