This repository was archived by the owner on Aug 20, 2026. It is now read-only.
Introduce time limit for mailman sync locking mechanism to avoid permanent failures #965
Workflow file for this run
This file contains hidden or 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
| name: PHP Coding Standards | |
| # Only run this action when pushing to main or on pull requests (creation, synchronisation, and reopening). | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| # Cancel running jobs that have become stale through updates to the ref (e.g., pushes to a pull request). | |
| concurrency: | |
| group: '${{ github.workflow }}-${{ github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| php-codesniffer: | |
| uses: 'GEWIS/gewisphp-coding-standards/.github/workflows/coding-standards.yml@1.2.0' | |
| with: | |
| php-version: '8.3' |