Skip to content

Commit b49c6a6

Browse files
authored
always recheck all tests on push to master (#370)
1 parent b6f959a commit b49c6a6

7 files changed

+23
-0
lines changed

.github/workflows/integration_block_storage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
paths:
77
- '**BlockStorage**'
88
- '**Common**'
9+
push:
10+
branches:
11+
- master
912

1013
jobs:
1114
tests:

.github/workflows/integration_compute.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
paths:
66
- '**Compute**'
77
- '**Common**'
8+
push:
9+
branches:
10+
- master
811

912
jobs:
1013
tests:

.github/workflows/integration_identity.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
paths:
66
- '**Identity**'
77
- '**Common**'
8+
push:
9+
branches:
10+
- master
811

912
jobs:
1013
tests:

.github/workflows/integration_images.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
paths:
66
- '**Images**'
77
- '**Common**'
8+
push:
9+
branches:
10+
- master
811

912
jobs:
1013
tests:

.github/workflows/integration_networking.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
paths:
66
- '**Networking**'
77
- '**Common**'
8+
push:
9+
branches:
10+
- master
811

912
jobs:
1013
tests:

.github/workflows/integration_object_storage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
paths:
66
- '**ObjectStore**'
77
- '**Common**'
8+
push:
9+
branches:
10+
- master
811

912
jobs:
1013
tests:

.github/workflows/unit_tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Run Unit Tests
22
on:
3+
workflow_dispatch:
34
pull_request:
5+
push:
6+
branches:
7+
- master
8+
49
jobs:
510
tests:
611
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)