mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-25 15:28:28 +00:00
92c1ab0cc1
* Update tests.yml using actions/checkout@v4 * Update static-analysis.yml usingactions/checkout@v4
36 lines
604 B
YAML
36 lines
604 B
YAML
name: static analysis
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- '*.x'
|
|
pull_request:
|
|
|
|
jobs:
|
|
psalm:
|
|
runs-on: ubuntu-22.04
|
|
|
|
strategy:
|
|
fail-fast: true
|
|
|
|
name: Psalm
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 8.2
|
|
ini-values: error_reporting=E_ALL
|
|
tools: composer:v2
|
|
coverage: none
|
|
|
|
- name: Install dependencies
|
|
uses: ramsey/composer-install@v2
|
|
|
|
- name: Execute Psalm
|
|
run: vendor/bin/psalm
|