summaryrefslogtreecommitdiffstats
path: root/pkg/model/testdata/strategy/push.yml
blob: 89bea6e416324959c42459e6a34e17bec097b6cb (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
---
jobs:
  strategy-all:
    name: ${{ matrix.node-version }} | ${{ matrix.site }} | ${{ matrix.datacenter }}
    runs-on: ubuntu-latest
    steps:
      - run: echo 'Hello!'
    strategy:
      fail-fast: false
      matrix:
        datacenter:
          - site-c
          - site-d
        exclude:
          - datacenter: site-d
            node-version: 14.x
            site: staging
        include:
          - php-version: 5.4
          - datacenter: site-a
            node-version: 10.x
            site: prod
          - datacenter: site-b
            node-version: 12.x
            site: dev
        node-version: [14.x, 16.x]
        site:
          - staging
      max-parallel: 2
  strategy-no-matrix:
    runs-on: ubuntu-latest
    steps:
      - run: echo 'Hello!'
    strategy:
      fail-fast: false
      max-parallel: 2
  strategy-only-fail-fast:
    runs-on: ubuntu-latest
    steps:
      - run: echo 'Hello!'
    strategy:
      fail-fast: false
  strategy-only-max-parallel:
    runs-on: ubuntu-latest
    steps:
      - run: echo 'Hello!'
    strategy:
      max-parallel: 2
'on':
  push: null