Skip to content

Also adding support for python 3.9 and 3.10 #8

Also adding support for python 3.9 and 3.10

Also adding support for python 3.9 and 3.10 #8

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 }}

Check failure on line 32 in .github/workflows/PR.yml

View workflow run for this annotation

GitHub Actions / PullRequest

Invalid workflow file

The workflow is not valid. .github/workflows/PR.yml (Line: 32, Col: 23): Invalid input, python-version is not defined in the referenced workflow.
needs: CodeFormat
SonarCloud:
uses: sede-open/openMCMC/.github/workflows/sonarcloud_analysis.yml@main
needs: Tests
secrets: inherit