-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from jolicode/up
ci: update some actions version
- Loading branch information
Showing
11 changed files
with
354 additions
and
518 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 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,52 +1,67 @@ | ||
name: Continuous Integration | ||
|
||
'on': | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
"on": | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
ci: | ||
name: Run the tests suite | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
php-versions: | ||
- '8.1' | ||
- '8.2' | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '${{ matrix.php-versions }}' | ||
extensions: mbstring, dom | ||
tools: jolicode/castor | ||
|
||
- name: Validate composer.json and composer.lock | ||
run: composer validate --strict | ||
|
||
- name: Install dependencies | ||
run: castor install | ||
|
||
- | ||
name: Install quality tools | ||
run: castor qa:install | ||
|
||
- | ||
name: Check coding standards | ||
run: castor qa:cs --dry-run | ||
|
||
- | ||
name: Run PHPStan | ||
run: castor qa:phpstan | ||
|
||
- | ||
name: Run tests | ||
run: castor qa:phpunit | ||
ci: | ||
name: Run the tests suite | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
php-versions: | ||
- "8.1" | ||
- "8.2" | ||
- "8.3" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "${{ matrix.php-versions }}" | ||
tools: jolicode/castor | ||
|
||
- name: Validate composer.json and composer.lock | ||
run: composer validate --strict | ||
|
||
- name: Install dependencies | ||
run: castor install | ||
|
||
- name: Install quality tools | ||
run: castor qa:install | ||
|
||
- name: Run PHPStan | ||
run: castor qa:phpstan | ||
|
||
- name: Run tests | ||
run: castor qa:phpunit | ||
|
||
cs: | ||
name: Check PHP coding standards | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.3 | ||
tools: jolicode/castor | ||
|
||
- name: Install dependencies | ||
run: castor install | ||
|
||
- name: Install quality tools | ||
run: castor qa:install --only php-cs-fixer | ||
|
||
- name: Check coding standards | ||
run: castor qa:cs --dry-run |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
{ | ||
"require": { | ||
"friendsofphp/php-cs-fixer": "^3.19" | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "8.1" | ||
}, | ||
"sort-packages": true | ||
} | ||
} |
Oops, something went wrong.