generated from php-standard-library/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH Action: Psalm: Run changes of psalm-plugin on PSL package
- Loading branch information
Showing
1 changed file
with
48 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,48 @@ | ||
name: "static analysis on PSL" | ||
|
||
on: | ||
pull_request: ~ | ||
push: ~ | ||
schedule: | ||
- cron: '0 */3 * * *' | ||
|
||
jobs: | ||
static-analysis: | ||
name: "static analysis" | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: "checkout" | ||
uses: "actions/checkout@v2" | ||
|
||
- name: "installing PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "8.1" | ||
ini-values: memory_limit=-1 | ||
tools: composer:v2, cs2pr | ||
extensions: bcmath, mbstring, intl, sodium, json | ||
|
||
- name: "Clone azjezz/psl" | ||
uses: "GuillaumeFalourd/clone-github-repo-action@v2.2" | ||
with: | ||
branch: 'next' | ||
owner: 'azjezz' | ||
repository: 'psl' | ||
|
||
- name: "Link current psalm-plugin" | ||
working-directory: psl | ||
run: | | ||
composer config repositories.psalm-plugin path ../ | ||
composer require --dev 'php-standard-library/psalm-plugin:*@dev' | ||
- name: "installing dependencies" | ||
working-directory: psl | ||
run: make install -j10 -O | ||
|
||
- name: "running static analysis" | ||
working-directory: psl | ||
run: make static-analysis | ||
|
||
- name: "calculating type coverage" | ||
working-directory: psl | ||
run: make type-coverage |