Merge pull request #197 from microsoftgraph/dependabot/github_actions… #542
This file contains 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
# Copyright (c) Microsoft Corporation. All rights reserved. | |
# Licensed under the MIT License. | |
name: "Validate Pull Request" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
validate-pull-request: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['7.4', '8.1', '8.2', '8.3'] | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
coverage: none | |
- name: Validate composer file | |
run: | | |
composer validate | |
- name: Install dependencies | |
run: | | |
composer install | |
- name: Run tests | |
run: ./vendor/bin/phpunit | |
- name: Run static analysis | |
run: | | |
vendor/bin/phpstan analyse --memory-limit=500M --error-format=github | |
code-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup PHP and Xdebug for Code Coverage report | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
coverage: xdebug | |
- name: Validate composer file | |
run: | | |
composer validate | |
- name: Install dependencies | |
run: | | |
composer install | |
- name: Run tests | |
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml | |
- name: Fix code coverage paths | |
run: sed -i 's@'$GITHUB_WORKSPACE'@/github/workspace/@g' coverage.xml | |
- name: SonarCloud Scan | |
if: ${{ !github.event.pull_request.head.repo.fork }} | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
# The check-php-version-matrix returns success if all matrix jobs in build are successful; otherwise, it returns a failure. | |
# Use this as a PR status check for GitHub Policy Service instead of individual matrix entry checks. | |
check-php-version-matrix: | |
runs-on: ubuntu-latest | |
needs: [validate-pull-request, code-coverage] | |
if: always() | |
steps: | |
- name: All build matrix options are successful | |
if: ${{ !(contains(needs.*.result, 'failure')) }} | |
run: exit 0 | |
- name: One or more build matrix options failed | |
if: ${{ contains(needs.*.result, 'failure') }} | |
run: exit 1 |