Skip to content

Commit 8d95e8a

Browse files
committed
Merge branch 'develop'
2 parents 6f3a16e + 7d13615 commit 8d95e8a

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

.github/workflows/continuous-integration.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
branches:
99
- "**"
1010
workflow_dispatch:
11+
workflow_call:
1112

1213
jobs:
1314
compile:

.github/workflows/create-release.yaml

+3-8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
tags:
66
- "v*"
77
workflow_dispatch:
8+
workflow_call:
89

910
jobs:
1011
tagged-release:
@@ -18,16 +19,10 @@ jobs:
1819
submodules: recursive
1920

2021
- name: Check Compilation, Tests, Examples, Docs and Benchmarks
21-
uses: actions/workflow-run-action@v2
22-
with:
23-
workflow: "continuous-integration.yaml"
24-
ref: ${{ github.ref }}
22+
uses: ./.github/workflows/continuous-integration.yaml
2523

2624
- name: Generate Python Wheels
27-
uses: actions/workflow-run-action@v2
28-
with:
29-
workflow: "wheels.yaml"
30-
ref: ${{ github.ref }}
25+
uses: ./.github/workflows/wheels.yaml
3126

3227
- name: Zip Source Code
3328
run: |

.github/workflows/run-carbonate.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
types: [created]
44
issues:
55
types: [opened]
6+
workflow_call:
67

78
jobs:
89
carbonate:

.github/workflows/wheels.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
branches:
1010
- "**"
1111
workflow_dispatch:
12+
workflow_call:
1213

1314
jobs:
1415
# Build the wheels for Linux, Windows and macOS for CPython 3.7 and newer

0 commit comments

Comments
 (0)