You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do not run cpp tests on schedule (compat tests). (#571)
* Do not run cpp tests on workflow_call (compat tests).
* echo github.event_name
* workflow_call => workflow_dispatch
* Try contains(fromJSON
* Fix contains(fromJSON
* Fix contains(fromJSON
* update changelog
* Auto update version
* trigger ci
---------
Co-authored-by: Dev version update bot <github-actions[bot]@users.noreply.github.com>
Copy file name to clipboardexpand all lines: .github/workflows/tests_gpu_cu11.yml
+6-5
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,5 @@
1
1
name: Testing::Linux::x86_64::LGPU
2
2
on:
3
-
workflow_run:
4
-
workflows: ["Testing::LKokkos::CUDA"]
5
-
types:
6
-
- completed
7
3
workflow_call:
8
4
inputs:
9
5
lightning-version:
@@ -14,6 +10,11 @@ on:
14
10
type: string
15
11
required: true
16
12
description: The version of PennyLane to use. Valid values are either 'release' (most recent release candidate), 'stable' (most recent git-tag) or 'latest' (most recent commit from master)
Copy file name to clipboardexpand all lines: .github/workflows/tests_windows.yml
+13-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,15 @@
1
1
name: Testing (Windows)
2
2
on:
3
+
workflow_call:
4
+
inputs:
5
+
lightning-version:
6
+
type: string
7
+
required: true
8
+
description: The version of Lightning to use. Valid values are either 'release' (most recent release candidate), 'stable' (most recent git-tag) or 'latest' (most recent commit from master)
9
+
pennylane-version:
10
+
type: string
11
+
required: true
12
+
description: The version of PennyLane to use. Valid values are either 'release' (most recent release candidate), 'stable' (most recent git-tag) or 'latest' (most recent commit from master)
0 commit comments