From dad20ff058ae194e22e5fdcf48960d8a30154834 Mon Sep 17 00:00:00 2001 From: Willem Pienaar <6728866+woop@users.noreply.github.com> Date: Sun, 29 Mar 2020 12:07:43 +0800 Subject: [PATCH] Allow tests to run on non-master branches (#588) * Allow tests on all branches * Allow unit tests to run on all branches --- .github/workflows/code_standards.yaml | 8 ++------ .github/workflows/unit-tests.yml | 6 +----- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/code_standards.yaml b/.github/workflows/code_standards.yaml index 684f1efaec..2077d75182 100644 --- a/.github/workflows/code_standards.yaml +++ b/.github/workflows/code_standards.yaml @@ -1,10 +1,6 @@ name: code standards -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: [push, pull_request] jobs: lint-java: @@ -33,4 +29,4 @@ jobs: - name: install dependencies run: make install-go-ci-dependencies - name: lint go - run: make lint-go \ No newline at end of file + run: make lint-go diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 6fd5bd51cc..b84cae395e 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -1,10 +1,6 @@ name: unit tests -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: [push, pull_request] jobs: unit-test-java: