18 lines
811 B
YAML
18 lines
811 B
YAML
# CI — plugin validation via the canonical reusable workflow in molecule-ci.
|
|
#
|
|
# Consolidation (CI-reusables): the previous inline copy (git clone of
|
|
# molecule-ci + inline validate-plugin.py run + inline secret-scan block)
|
|
# is replaced by a native cross-repo reusable `uses:`. This removes the
|
|
# per-repo drift of the validate steps across the plugin fleet.
|
|
#
|
|
# Cross-repo `uses:` is repository-relative and resolves through the Gitea
|
|
# server configured for each runner lane. The workflow does not hard-code
|
|
# either the canonical domain or an internal runner service URL.
|
|
#
|
|
# Pinned to a molecule-ci main commit SHA (reserved-path hygiene).
|
|
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
validate:
|
|
uses: molecule-ai/molecule-ci/.gitea/workflows/validate-plugin.yml@d8066f147da91072867973b9e0d867996b8a01fd
|