Skip to content

Commit 1adabd6

Browse files
Run CI on release branch (#79)
1 parent 6a08078 commit 1adabd6

File tree

8 files changed

+36
-15
lines changed

8 files changed

+36
-15
lines changed

.github/workflows/quality.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Quality Checks
2+
23
on:
34
push:
45
branches:

.github/workflows/test_cli.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ name: Optimum CLI / Python - Test
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- v*-release
68
pull_request:
7-
branches: [main]
9+
branches:
10+
- main
811

912
concurrency:
1013
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/test_exporters_common.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ name: Exporters Common / Python - Test
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- v*-release
68
pull_request:
7-
branches: [main]
9+
branches:
10+
- main
811

912
concurrency:
1013
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/test_exporters_onnx.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ name: Exporters ONNX / Python - Test
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- v*-release
68
pull_request:
7-
branches: [main]
9+
branches:
10+
- main
811

912
concurrency:
1013
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/test_exporters_onnx_cli.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ name: Exporters ONNX CLI / Python - Test
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- v*-release
68
pull_request:
7-
branches: [main]
9+
branches:
10+
- main
811

912
concurrency:
1013
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/test_offline.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ name: Offline usage / Python - Test
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- v*-release
68
pull_request:
7-
branches: [main]
9+
branches:
10+
- main
811

912
concurrency:
1013
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/test_onnx.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ name: ONNX / Python - Test
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- v*-release
68
pull_request:
7-
branches: [main]
9+
branches:
10+
- main
811

912
concurrency:
1013
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/test_onnxruntime.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: ONNX Runtime / Python - Test
22

33
on:
4-
workflow_dispatch:
54
push:
6-
branches: [main]
5+
branches:
6+
- main
7+
- v*-release
78
pull_request:
8-
branches: [main]
9+
branches:
10+
- main
911

1012
concurrency:
1113
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

0 commit comments

Comments
 (0)