Skip to content

Fix text/x-mail issue and quarantine operations #144

Fix text/x-mail issue and quarantine operations

Fix text/x-mail issue and quarantine operations #144

Workflow file for this run

name: PHPStan
on:
# Run on all pushes and on all pull requests.
# Prevent the build from running when there are only irrelevant changes.
push:
paths-ignore:
- '**.md'
- 'data'
- 'MailScanner_perl_scripts'
- 'tools/MailScanner_config'
- 'tools/sudo'
pull_request:
paths-ignore:
- '**.md'
- 'data'
- 'MailScanner_perl_scripts'
- 'tools/MailScanner_config'
- 'tools/sudo'
# Allow manually triggering the workflow.
workflow_dispatch:
jobs:
phpstan:
name: "PHP: 8.1 | PHPStan"
runs-on: "ubuntu-latest"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
coverage: none
tools: phpstan
# Install dependencies and handle caching in one go.
# Dependencies need to be installed to make sure the PHPUnit classes are recognized.
# @link https://github.com/marketplace/actions/install-composer-dependencies
- name: Install Composer dependencies
uses: "ramsey/composer-install@v3"
- name: Run PHPStan
run: phpstan analyse --configuration=phpstan.dist.neon --error-format=github