Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Dec 10, 2024
1 parent 2bb9552 commit 976e93c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 23 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/analyse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,15 @@ on:

jobs:
analyse:
runs-on: ${{ matrix.os }}
runs-on: "ubuntu-latest"
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os:
- "ubuntu-latest"
php:
- 8.2
php: [8.3]
experimental:
- false

name: PHP:${{ matrix.php }} on ${{ matrix.os }}
name: PHP:${{ matrix.php }} Code Analysis

steps:
- name: Checkout code
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/audits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,18 @@ on:

jobs:
audit-dependencies:
runs-on: ${{ matrix.os }}
runs-on: "ubuntu-latest"
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os:
- "ubuntu-latest"
php:
- 8.2
- 8.3
- 8.4
experimental:
- true

name: PHP:${{ matrix.php }} on ${{ matrix.os }}
name: PHP:${{ matrix.php }} Code Audit

steps:
- name: Checkout code
Expand Down
13 changes: 4 additions & 9 deletions .github/workflows/coveralls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,15 @@ on:

jobs:
tests:
runs-on: ${{ matrix.os }}
runs-on: "ubuntu-latest"
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os:
- "ubuntu-latest"
php:
- 8.2
dependencies:
- "highest"
php: [8.3]
experimental:
- false

name: PHP:${{ matrix.php }} on ${{ matrix.os }} (${{ matrix.dependencies }})
name: PHP:${{ matrix.php }} Code Coverage

steps:
- name: Checkout code
Expand All @@ -35,7 +30,7 @@ jobs:
- name: Install dependencies
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
dependency-versions: "highest"
composer-options: "--prefer-dist --no-cache"

- name: Installed dependencies
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ on:

jobs:
tests-on-phpunit-10:
runs-on: ${{ matrix.os }}
runs-on: "ubuntu-latest"
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os:
- "ubuntu-latest"
php:
- 8.2
- 8.3
Expand All @@ -28,7 +26,7 @@ jobs:
experimental:
- false

name: PHP:${{ matrix.php }} with PHPUnit:${{ matrix.phpunit }} on ${{ matrix.os }} (${{ matrix.dependencies }})
name: PHP:${{ matrix.php }} / PHPUnit:${{ matrix.phpunit }} ${{ matrix.dependencies == 'highest' && '⬆️' || '⬇️' }}

steps:
- name: Checkout repository and submodules
Expand Down

0 comments on commit 976e93c

Please sign in to comment.