Skip to content

Qual: Add dependencies between workflows (WIP) #3

Qual: Add dependencies between workflows (WIP)

Qual: Add dependencies between workflows (WIP) #3

Workflow file for this run

name: "CI"
on: [push, pull_request]
jobs:
pre-commit:
uses: ./.github/workflows/pre-commit.yml@${{ github.sha }}

Check failure on line 6 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

invalid value workflow reference: cannot specify version when calling local workflows
secrets: inherit
phan:
uses: ./.github/workflows/phan.yml@${{ github.sha }}
secrets: inherit
phpstan:
uses: ./.github/workflows/phpstan.yml@${{ github.sha }}
secrets: inherit
needs: [pre-commit, phan]
windows-ci:
needs: [pre-commit, phan]
secrets: inherit
uses: ./.github/workflows/windows-ci.yml@${{ github.sha }}
travis:
needs: [windows-ci]
secrets: inherit
uses: ./.github/workflows/travis.yml@${{ github.sha }}