-
-
Notifications
You must be signed in to change notification settings - Fork 50
38 lines (37 loc) · 920 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: "CI"
on: [push, pull_request]
jobs:
#pre-commit:
# if: false
# uses: ./.github/workflows/pre-commit.yml
# secrets: inherit
# with:
# gh_event: ${{ github.event_name }}
phan:
uses: ./.github/workflows/phan.yml
secrets: inherit
# needs: [pre-commit]
with:
gh_event: ${{ github.event_name }}
#phpstan:
# if: false
# uses: ./.github/workflows/phpstan.yml
# secrets: inherit
# needs: [pre-commit]
# with:
# gh_event: ${{ github.event_name }}
#windows-ci:
# if: false
# needs: [pre-commit, phpstan, phan]
# secrets: inherit
# uses: ./.github/workflows/windows-ci.yml
# with:
# gh_event: ${{ github.event_name }}
#gh-travis: # Runs travis script on github runner (not on travis)
# if: false
# # needs: [pre-commit, phan]
# # needs: [windows-ci]
# secrets: inherit
# uses: ./.github/workflows/gh-travis.yml
# with:
# gh_event: ${{ github.event_name }}