Skip to content

Qual: Add dependencies between workflows (WIP) #1

Qual: Add dependencies between workflows (WIP)

Qual: Add dependencies between workflows (WIP) #1

Workflow file for this run

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

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: no version specified
secrets: inherit
phan:
uses: .github/workflows/phan.yml
secrets: inherit
phpstan:
uses: .github/workflows/phpstan.yml
secrets: inherit
needs: [pre-commit, phan]
windows-ci:
needs: [pre-commit, phan]
secrets: inherit
uses: .github/workflows/windows-ci.yml
travis:
needs: [windows-ci]
secrets: inherit
uses: .github/workflows/travis.yml