mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-17 14:31:30 +00:00
1ed7ade52c
* Update to recommended two workflows for secure secret when uploadin * Making depenant workflow work
35 lines
589 B
YAML
35 lines
589 B
YAML
name: static analysis
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*.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
|