Skip to content

ci: add package verification check #619

ci: add package verification check

ci: add package verification check #619

name: CI (PR)
on:
# Runs whenever a pull request is opened or updated.
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
pr_title_check:
name: PR title check
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v6.1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
doc_checks:
name: Doc checks
uses: ./.github/workflows/_check_docs.yaml
code_checks:
name: Code checks
uses: ./.github/workflows/_check_code.yaml
docstrings_checks:
name: Docstrings checks
uses: ./.github/workflows/_check_docstrings.yaml
package_check:
name: Package check
uses: apify/workflows/.github/workflows/python_package_check.yaml@main

Check failure on line 34 in .github/workflows/on_pull_request.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/on_pull_request.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/on_pull_request.yaml" -> "apify/workflows/.github/workflows/python_package_check.yaml@main" : failed to fetch workflow: workflow was not found.
with:
package_name: apify_client
src_package_dir: src/apify_client
tests:
name: Tests
uses: ./.github/workflows/_tests.yaml
secrets: inherit