Skip to content

Thining results

Thining results #26

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Shell Global Solutions International B.V. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
name: PullRequest
on:
pull_request:
types: [opened, synchronize, reopened, review_requested]
branches:
- main
jobs:
CodeFormat:
uses: sede-open/openMCMC/.github/workflows/code_formatting.yml@main
secrets: inherit
Pydocstyle:
uses: sede-open/openMCMC/.github/workflows/pydocstyle_check.yml@main
needs: CodeFormat
Pylint:
uses: sede-open/openMCMC/.github/workflows/pylint_check.yml@main
needs: Pydocstyle
Tests:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
uses: sede-open/openMCMC/.github/workflows/run_tests.yml@main
with:
python-version: ${{ matrix.python-version }}
needs: CodeFormat
SonarCloud:
uses: sede-open/openMCMC/.github/workflows/sonarcloud_analysis.yml@main
needs: Tests
secrets: inherit