Skip to content

chore(deps-dev): bump the kiota group across 1 directory with 7 updates #768

chore(deps-dev): bump the kiota group across 1 directory with 7 updates

chore(deps-dev): bump the kiota group across 1 directory with 7 updates #768

Workflow file for this run

name: Validate code accuracy
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main, dev ]
workflow_call:
jobs:
validate:
name: Validate code accuracy
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with Pylint
run: pylint msgraph_beta --disable=W --rcfile=.pylintrc
# The check-build-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-build-matrix:
runs-on: ubuntu-latest
needs: validate
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