mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
36 lines
978 B
YAML
36 lines
978 B
YAML
name: Continuous Integration (Unstable)
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
ignore-failure:
|
|
description: "Don't fail on error"
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
workflow_dispatch:
|
|
inputs:
|
|
ignore-failure:
|
|
description: "Don't fail on error"
|
|
type: boolean
|
|
default: false
|
|
|
|
concurrency:
|
|
group: ci-${{ github.workflow }}-${{ github.ref }}-unstable
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
e2e-unstable:
|
|
name: End-to-end tests (Unstable)
|
|
uses: ./.github/workflows/ci_e2e-unstable.yaml
|
|
with:
|
|
ignore-failure: ${{ inputs.ignore-failure }}
|
|
packages-unstable:
|
|
name: Packages (Unstable)
|
|
uses: ./.github/workflows/ci_packages-unstable.yaml
|
|
with:
|
|
type: minimal
|
|
ignore-failure: ${{ inputs.ignore-failure }}
|