diff options
author | Daniel Baumann <daniel@debian.org> | 2025-01-24 09:00:09 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2025-01-24 09:00:09 +0100 |
commit | 4bf4dabd48aa70da3699b9a023f22689645d24f4 (patch) | |
tree | ed8175444649e71c0ed0e5f1d30101786ca2473e /pkg/model/testdata/strategy/push.yml | |
parent | Initial commit. (diff) | |
download | forgejo-act-debian.tar.xz forgejo-act-debian.zip |
Adding upstream version 1.24.0.HEADupstream/1.24.0upstreamdebian
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'pkg/model/testdata/strategy/push.yml')
-rw-r--r-- | pkg/model/testdata/strategy/push.yml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/pkg/model/testdata/strategy/push.yml b/pkg/model/testdata/strategy/push.yml new file mode 100644 index 0000000..89bea6e --- /dev/null +++ b/pkg/model/testdata/strategy/push.yml @@ -0,0 +1,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 |