Skip to content

Commit d5faedf

Browse files
committed
refined triggers and naming of builds
1 parent 5fa7060 commit d5faedf

6 files changed

+38
-14
lines changed

.github/workflows/integration-test-aura.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
name: Integration Tests
1+
name: Integration Tests On Neo4j Aura
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
210

311
on:
412
push:

.github/workflows/integration-test-cluster-neo4j-4.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
name: Full Test
1+
name: Integration Tests On Cluster Neo4j 4
22

33
on:
44
push:
5-
branches: [ '**' ]
5+
branches:
6+
- main
67
pull_request:
7-
branches: ['**']
8+
branches:
9+
- main
810

911
jobs:
1012
tests:

.github/workflows/integration-test-cluster-neo4j-5.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
name: Integration Tests
1+
name: Integration Tests On Cluster Neo4j 5
22

33
on:
44
push:
5-
branches: [ '**' ]
5+
branches:
6+
- main
67
pull_request:
7-
branches: ['**']
8+
branches:
9+
- main
810

911
jobs:
1012
tests:

.github/workflows/integration-test-single-server.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
name: Integration Tests
1+
name: Integration Tests On Single Server
22

33
on:
44
push:
5-
branches: [ '**' ]
5+
branches:
6+
- main
67
pull_request:
7-
branches: ['**']
8+
branches:
9+
- main
810

911
jobs:
1012
tests:

.github/workflows/static-analysis.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1-
on: [ push, pull_request ]
2-
name: Lint
1+
name: Static Analysis
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
311
jobs:
412
php-cs-fixer:
513
name: "Lint"

.github/workflows/unit-test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: Unit Tests
22

33
on:
44
push:
5-
branches: [ '**' ]
5+
branches:
6+
- main
67
pull_request:
7-
branches: ['**']
8+
branches:
9+
- main
810

911
jobs:
1012
tests:

0 commit comments

Comments
 (0)