From b50d609a36b77c2daa677066824d160b76169edb Mon Sep 17 00:00:00 2001 From: Craig Date: Tue, 14 Apr 2020 16:08:21 -0700 Subject: [PATCH] Run CI on all pushes / PR's --- .github/workflows/superset-e2e.yml | 5 +---- .github/workflows/superset-frontend.yml | 9 +-------- .github/workflows/superset-python.yml | 19 +------------------ 3 files changed, 3 insertions(+), 30 deletions(-) diff --git a/.github/workflows/superset-e2e.yml b/.github/workflows/superset-e2e.yml index a093f828016a..94c8a83987ed 100644 --- a/.github/workflows/superset-e2e.yml +++ b/.github/workflows/superset-e2e.yml @@ -1,9 +1,6 @@ name: E2E -on: - push: - branches: [ master ] - pull_request: +on: [push, pull_request] jobs: cypress: diff --git a/.github/workflows/superset-frontend.yml b/.github/workflows/superset-frontend.yml index 37bc9ff7857c..3fbad8cb9ef1 100644 --- a/.github/workflows/superset-frontend.yml +++ b/.github/workflows/superset-frontend.yml @@ -1,13 +1,6 @@ name: Frontend -on: - push: - branches: [ master ] - paths: - - superset-frontend/** - pull_request: - paths: - - superset-frontend/** +on: [push, pull_request] jobs: frontend-build: diff --git a/.github/workflows/superset-python.yml b/.github/workflows/superset-python.yml index bfc022ca6009..5bf02546684b 100644 --- a/.github/workflows/superset-python.yml +++ b/.github/workflows/superset-python.yml @@ -1,23 +1,6 @@ name: Python -on: - # only build on direct push to `master` branch - push: - branches: [ master ] - paths: - - ./**/*.py - - superset/** - - tests/** - - requirements*.txt - # but also build on pull requests to any branch - # (the so-called feature branch) - pull_request: - paths: - - ./**/*.py - - superset/** - - tests/** - - setup.py - - requirements*.txt +on: [push, pull_request] jobs: lint: