Run CI on all pushes / PR's (#9538)

This commit is contained in:
Craig Rueda 2020-04-14 21:16:16 -07:00 committed by GitHub
parent 1d7900ade3
commit fd89900dc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 30 deletions

View File

@ -1,9 +1,6 @@
name: E2E
on:
push:
branches: [ master ]
pull_request:
on: [push, pull_request]
jobs:
cypress:

View File

@ -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:

View File

@ -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: