Skip to content

Commit 83d812d

Browse files
committed
ci: Fix Workflows
1 parent 164bfc2 commit 83d812d

4 files changed

Lines changed: 13 additions & 17 deletions

File tree

.github/workflows/php80.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,13 @@ on:
66
pull_request:
77
branches: [ main ]
88
env:
9-
OPERATING_SYS: "ubuntu-latest"
9+
OPERATING_SYS: ubuntu-latest
1010
PHP_VERSION: 8.0
1111
jobs:
1212
test:
13-
runs-on: ${{ env.OPERATING_SYS }}
14-
strategy:
15-
fail-fast: true
13+
runs-on: "ubuntu-latest"
1614

17-
name: "PHP ${{ env.PHP_VERSION }} - ${{ env.OPERATING_SYS }}"
15+
name: "PHP 8.0 - Ubuntu-Latest"
1816

1917
steps:
2018
- name: Clone Repo
@@ -27,7 +25,6 @@ jobs:
2725
extensions: mysqli, mbstring, sqlsrv
2826
tools: phpunit:8.5.13
2927

30-
3128
- name: Install Dependencies
3229
run: composer install --prefer-source --no-interaction
3330

.github/workflows/php81.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66
pull_request:
77
branches: [ main ]
88
env:
9-
OPERATING_SYS: "ubuntu-latest"
9+
OPERATING_SYS: ubuntu-latest
1010
PHP_VERSION: 8.1
1111
jobs:
1212
test:
13-
runs-on: ${{ env.OPERATING_SYS }}
13+
runs-on: "ubuntu-latest"
1414

15-
name: "PHP ${{ env.PHP_VERSION }} - ${{ env.OPERATING_SYS }}"
15+
name: "PHP 8.1 - Ubuntu-Latest"
1616

1717
steps:
1818
- name: Clone Repo
@@ -25,7 +25,6 @@ jobs:
2525
extensions: mysqli, mbstring, sqlsrv
2626
tools: phpunit:9.5.20, composer
2727

28-
2928
- name: Install Dependencies
3029
run: composer install --prefer-source --no-interaction
3130

.github/workflows/php82.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66
pull_request:
77
branches: [ main ]
88
env:
9-
OPERATING_SYS: "ubuntu-latest"
9+
OPERATING_SYS: ubuntu-latest
1010
PHP_VERSION: 8.2
1111
jobs:
1212
test:
13-
runs-on: ${{ env.OPERATING_SYS }}
13+
runs-on: "ubuntu-latest"
1414

15-
name: "PHP ${{ env.PHP_VERSION }} - ${{ env.OPERATING_SYS }}"
15+
name: "PHP 8.2 - Ubuntu-Latest"
1616

1717
steps:
1818
- name: Clone Repo

.github/workflows/php83.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66
pull_request:
77
branches: [ main, dev ]
88
env:
9-
OPERATING_SYS: "ubuntu-latest"
9+
OPERATING_SYS: ubuntu-latest
1010
PHP_VERSION: 8.3
1111
jobs:
1212
test:
13-
runs-on: ${{ env.OPERATING_SYS }}
13+
runs-on: "ubuntu-latest"
1414

15-
name: "PHP ${{ env.PHP_VERSION }} - ${{ env.OPERATING_SYS }}"
15+
name: "PHP 8.3 - Ubuntu-Latest"
1616

1717
steps:
1818
- name: Clone Repo
@@ -46,7 +46,7 @@ jobs:
4646
name: Prepare Production Release Branch / Publish Release
4747
needs:
4848
- "test"
49-
runs-on: ubuntu-latest
49+
runs-on: "ubuntu-latest"
5050
if: github.ref == 'refs/heads/main'
5151
steps:
5252
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)