Skip to content

Commit dad20ff

Browse files
authored
Allow tests to run on non-master branches (#588)
* Allow tests on all branches * Allow unit tests to run on all branches
1 parent 314369d commit dad20ff

2 files changed

Lines changed: 3 additions & 11 deletions

File tree

.github/workflows/code_standards.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: code standards
22

3-
on:
4-
push:
5-
branches: [ master ]
6-
pull_request:
7-
branches: [ master ]
3+
on: [push, pull_request]
84

95
jobs:
106
lint-java:
@@ -33,4 +29,4 @@ jobs:
3329
- name: install dependencies
3430
run: make install-go-ci-dependencies
3531
- name: lint go
36-
run: make lint-go
32+
run: make lint-go

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: unit tests
22

3-
on:
4-
push:
5-
branches: [ master ]
6-
pull_request:
7-
branches: [ master ]
3+
on: [push, pull_request]
84

95
jobs:
106
unit-test-java:

0 commit comments

Comments
 (0)