21 lines
588 B
YAML
21 lines
588 B
YAML
name: Run Pytest for Plugin
|
|
description: "Run pytest for the specified BEC plugin repository"
|
|
inputs:
|
|
PLUGIN_REPO_NAME:
|
|
description: "Name of the plugin repository to run tests for"
|
|
required: true
|
|
default: ""
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
repository: bec/bec_shared_actions
|
|
ref: main
|
|
path: bec_shared_actions
|
|
- name: Run Pytest for Plugin
|
|
shell: bash
|
|
run: |
|
|
chmod +x ./run_pytest_for_plugin/run_ci.sh
|
|
./run_pytest_for_plugin/run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" |