Skip to content

update PR trigger

update PR trigger #75

Workflow file for this run

name: Pull Request
on:
pull_request:
jobs:
static-analysis:
uses: mindee/mindee-api-python/.github/workflows/_static-analysis.yml@${{ github.head_ref || github.ref }}

Check failure on line 8 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull-request.yml

Invalid workflow file

invalid value workflow reference: version cannot have whitespace: ${{ github.head_ref || github.ref }}
test-units:
uses: mindee/mindee-api-python/.github/workflows/_test-units.yml@${{ github.head_ref || github.ref }}
needs: static-analysis
secrets: inherit
test-regressions:
uses: mindee/mindee-api-python/.github/workflows/_test-regressions.yml@${{ github.head_ref || github.ref }}
needs: test-units
secrets: inherit
test-integrations:
uses: mindee/mindee-api-python/.github/workflows/_test-integrations.yml@${{ github.head_ref || github.ref }}
needs: test-units
secrets: inherit
test-code-samples:
uses: mindee/mindee-api-python/.github/workflows/_test-code-samples.yml@${{ github.head_ref || github.ref }}
needs: test-units
secrets: inherit