Skip to content

[MTM-59397] As a plugin developer I want to have a workflow that will collect shell versions and run cypress tests against them #8

[MTM-59397] As a plugin developer I want to have a workflow that will collect shell versions and run cypress tests against them

[MTM-59397] As a plugin developer I want to have a workflow that will collect shell versions and run cypress tests against them #8

name: Main Workflow
on:
pull_request:
permissions:
contents: read
jobs:
collect-shell-versions:
uses: ./.github/workflows/collect-shell-versions.yml
build-plugins:
needs: collect-shell-versions
uses: ./.github/workflows/build-plugins.yml
test-plugins-against-cockpit:
needs: [collect-shell-versions, build-plugins]
uses: ./.github/workflows/test-plugins-against-cockpit.yml
with:
non_deprecated_shell_versions: ${{ needs.collect-shell-versions.outputs.non_deprecated_shell_versions }}