From 83b97fcd09db4f2f15dc89f28247f78867caa14a Mon Sep 17 00:00:00 2001 From: Willem Pienaar <6728866+woop@users.noreply.github.com> Date: Sun, 29 Mar 2020 12:04:15 +0800 Subject: [PATCH 1/2] Allow tests on all branches --- .github/workflows/code_standards.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 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 From d44dd948c07bb2d3ff74220325929a002eeda5d5 Mon Sep 17 00:00:00 2001 From: Willem Pienaar <6728866+woop@users.noreply.github.com> Date: Sun, 29 Mar 2020 12:05:53 +0800 Subject: [PATCH 2/2] Allow unit tests to run on all branches --- .github/workflows/unit-tests.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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: