Skip to content

Removing the refs for the workflow to use the current branch workflows #14

Removing the refs for the workflow to use the current branch workflows

Removing the refs for the workflow to use the current branch workflows #14

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

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

View workflow run for this annotation

GitHub Actions / .github/workflows/PR.yml

Invalid workflow file

invalid value workflow reference: no version specified
secrets: inherit
Pydocstyle:
uses: sede-open/openMCMC/.github/workflows/pydocstyle_check.yml
needs: CodeFormat
Pylint:
uses: sede-open/openMCMC/.github/workflows/pylint_check.yml
needs: Pydocstyle
Tests:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
uses: sede-open/openMCMC/.github/workflows/run_tests.yml
with:
python-version: ${{ matrix.python-version }}
needs: CodeFormat
SonarCloud:
uses: sede-open/openMCMC/.github/workflows/sonarcloud_analysis.yml
needs: Tests
secrets: inherit