Skip to content

fix: suppress MissingOverrideAttribute in Psalm (PHP 8.1 compat) #3

fix: suppress MissingOverrideAttribute in Psalm (PHP 8.1 compat)

fix: suppress MissingOverrideAttribute in Psalm (PHP 8.1 compat) #3

Workflow file for this run

# SPDX-FileCopyrightText: 2026 OIDC Groups Mapping Contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
name: PHPUnit
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.1', '8.2', '8.3']
name: PHPUnit (PHP ${{ matrix.php }})
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install dependencies
run: composer update --no-interaction --prefer-dist
- name: Run unit tests
run: composer test:unit