17 lines
470 B
YAML
17 lines
470 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:
|
|
- name: Run Pytest for Plugin
|
|
shell: bash
|
|
run: |
|
|
SCRIPT_PATH="${{ github.action_path }}/run_ci.sh"
|
|
chmod +x "$SCRIPT_PATH"
|
|
"$SCRIPT_PATH" "${{ inputs.PLUGIN_REPO_NAME }}" |