We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67ef5dd commit 3c9394fCopy full SHA for 3c9394f
1 file changed
.github/workflows/unit_tests_common.yml
@@ -1,5 +1,6 @@
1
name: Common Unit Tests
2
3
+
4
on:
5
workflow_call:
6
inputs:
@@ -96,6 +97,7 @@ jobs:
96
97
- name: Check if tests should run
98
id: should_run
99
run: |
100
+ echo "should_run=true" >> $GITHUB_OUTPUT
101
GROUP='${{ matrix.test_group.name }}'
102
# Force run if 'full ci' label exists
103
if [ "${{ contains(github.event.pull_request.labels.*.name, 'full ci') }}" == "true" ]; then
@@ -121,7 +123,7 @@ jobs:
121
123
122
124
set -euo pipefail
125
# 1. Execute hardware-specific setup (e.g. conda activate, export paths)
-
126
127
#! setup_commands from all_tests_xxx.yml(like all_tests_metax.yml)
128
${{ inputs.setup_commands }}
129
0 commit comments