mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-30 04:57:54 -05:00
* Replace tabs with spaces Signed-off-by: objecttothis <objecttothis@gmail.com> * Composer package bumps - Bump codeigniter4/framework to 4.6.0 - Bump codeIgniter/coding-standard to ^1.8 - Bump codeigniter4/devkit to ^1.3 - Updated framework files required by CI4.6.0 - Removed Deprecated variables - Added new file in the repo from framework Signed-off-by: objecttothis <objecttothis@gmail.com> * Reflect PHP 8.4 support Updates for PHP 8.4 support introduced with the upgrade to CodeIgniter 4.6.x * Update INSTALL.md - Revert PHP 8.4 support for now. - Removed extra space before comma --------- Signed-off-by: objecttothis <objecttothis@gmail.com> Co-authored-by: BudsieBuds <bas_hubers@hotmail.com>
35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
name: PHP Linting
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
phplint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: PHP Lint 8.0
|
|
uses: dbfx/github-phplint/8.0@master
|
|
with:
|
|
folder-to-exclude: "! -path \"./vendor/*\" ! -path \"./folder/excluded/*\""
|
|
- name: PHP Lint 8.1
|
|
uses: dbfx/github-phplint/8.1@master
|
|
with:
|
|
folder-to-exclude: "! -path \"./vendor/*\" ! -path \"./folder/excluded/*\""
|
|
- name: PHP Lint 8.2
|
|
uses: dbfx/github-phplint/8.2@master
|
|
with:
|
|
folder-to-exclude: "! -path \"./vendor/*\" ! -path \"./folder/excluded/*\""
|
|
- name: PHP Lint 8.3
|
|
uses: dbfx/github-phplint/8.3@master
|
|
with:
|
|
folder-to-exclude: "! -path \"./vendor/*\" ! -path \"./folder/excluded/*\""
|
|
- name: PHP Lint 8.4
|
|
uses: dbfx/github-phplint/8.4@master
|
|
with:
|
|
folder-to-exclude: "! -path \"./vendor/*\" ! -path \"./folder/excluded/*\""
|