Skip to content

Commit

Permalink
Update GitHub Actions job names
Browse files Browse the repository at this point in the history
  • Loading branch information
alcaeus committed Sep 5, 2024
1 parent 21935e2 commit 3a661a1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/arginfo-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
- "master"
- "feature/*"

env:
PHP_VERSION: "8.2"

jobs:
check-arginfo:
name: "Check generated arginfo files"
Expand All @@ -31,7 +34,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

0 comments on commit 3a661a1

Please sign in to comment.