-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
rvanderheijden
committed
Jan 12, 2023
1 parent
e9efe5c
commit 5ed8d9e
Showing
2 changed files
with
54 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: PHP 8.1 | ||
|
||
on: push | ||
|
||
jobs: | ||
php80: | ||
name: Check PHP 8.1 | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
uses: php-actions/composer@v5 | ||
with: | ||
php_version: 8.1 | ||
args: --prefer-dist --ignore-platform-reqs | ||
|
||
- name: Check code styling | ||
run: composer ecs-check | ||
|
||
- name: Create keys | ||
run: ./bin/create_keys | ||
|
||
- name: Run unit and feature tests | ||
run: composer test |
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: PHP 8.2 | ||
|
||
on: push | ||
|
||
jobs: | ||
php80: | ||
name: Check PHP 8.2 | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
uses: php-actions/composer@v5 | ||
with: | ||
php_version: 8.2 | ||
args: --prefer-dist --ignore-platform-reqs | ||
|
||
- name: Check code styling | ||
run: composer ecs-check | ||
|
||
- name: Create keys | ||
run: ./bin/create_keys | ||
|
||
- name: Run unit and feature tests | ||
run: composer test |