Skip to content

Commit

Permalink
Allow tests to run on non-master branches (#588)
Browse files Browse the repository at this point in the history
* Allow tests on all branches

* Allow unit tests to run on all branches
  • Loading branch information
woop authored Mar 29, 2020
1 parent 314369d commit dad20ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/code_standards.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: code standards

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
on: [push, pull_request]

jobs:
lint-java:
Expand Down Expand Up @@ -33,4 +29,4 @@ jobs:
- name: install dependencies
run: make install-go-ci-dependencies
- name: lint go
run: make lint-go
run: make lint-go
6 changes: 1 addition & 5 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: unit tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
on: [push, pull_request]

jobs:
unit-test-java:
Expand Down

0 comments on commit dad20ff

Please sign in to comment.