Skip to content

Commit d3a0af0

Browse files
authored
workflows: Only run tests once (#924)
* workflows: Only run tests once * Python too
1 parent 3f131b7 commit d3a0af0

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.github/workflows/ci-kotlin.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
name: gradle
2-
on: [push, pull_request]
1+
name: kotlin
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
37
jobs:
48

59
build:

.github/workflows/ci-python.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: python
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
37
jobs:
48

59
build:

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: go
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
37
jobs:
48

59
build:

0 commit comments

Comments
 (0)