-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Remove support for v11.5 and add support for v13.0 (#22)
Additionally: - Add PHP 8.3 to workflow matrix - Use "ubuntu-latest" instead of "ubuntu-22.04" to avoid problems in the future - Update "actions/checkout" to version 4 - Update dev dependencies
- Loading branch information
1 parent
9c4c470
commit 8a80ffb
Showing
8 changed files
with
67 additions
and
65 deletions.
There are no files selected for viewing
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: tests 12.4 | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '56 4 * * *' | ||
|
||
jobs: | ||
unit: | ||
name: Unit Tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
php: | ||
- '8.1' | ||
- '8.2' | ||
- '8.3' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install testing system | ||
run: Build/Scripts/runTests.sh -t 12.4 -p ${{ matrix.php }} -s composerUpdate | ||
|
||
- name: Unit Tests | ||
run: Build/Scripts/runTests.sh -t 12.4 -p ${{ matrix.php }} -s unit |
14 changes: 7 additions & 7 deletions
14
.github/workflows/tests-12.0.yml → .github/workflows/tests-13.0.yml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
name: tests 12.0 | ||
name: tests 13.0 | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '56 4 * * *' | ||
|
||
jobs: | ||
unit: | ||
name: Unit Tests | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
php: | ||
- '8.1' | ||
- '8.2' | ||
- '8.3' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install testing system | ||
run: Build/Scripts/runTests.sh -t 12.0 -p ${{ matrix.php }} -s composerUpdate | ||
run: Build/Scripts/runTests.sh -t 13.0 -p ${{ matrix.php }} -s composerUpdate | ||
|
||
- name: Unit Tests | ||
run: Build/Scripts/runTests.sh -t 12.0 -p ${{ matrix.php }} -s unit | ||
run: Build/Scripts/runTests.sh -t 13.0 -p ${{ matrix.php }} -s unit |
This file contains 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
This file contains 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
This file contains 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
This file contains 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