From fd89900dc5b39b6dd79be2b00025d9e5d0e1e81a Mon Sep 17 00:00:00 2001 From: Craig Rueda Date: Tue, 14 Apr 2020 21:16:16 -0700 Subject: [PATCH] Run CI on all pushes / PR's (#9538) --- .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 a093f82801..94c8a83987 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 37bc9ff785..3fbad8cb9e 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 bfc022ca60..5bf0254668 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: