villebro commented on a change in pull request #9517: [Build] Add Github workflows URL: https://github.com/apache/incubator-superset/pull/9517#discussion_r407341587
########## File path: .github/workflows/superset-backend.yml ########## @@ -0,0 +1,161 @@ +name: Backend + +on: + # only build on direct push to `master` branch + push: + branches: [ master ] + paths: + - superset/**/*.py + - tests/** + - setup.py + - requirements*.txt + # but also build on pull requests to any branch + # (the so-called feature branch) + pull_request: + paths: + - superset/**/*.py + - tests/** + - setup.py + - requirements*.txt + +jobs: + python-lint: + runs-on: ubuntu-latest Review comment: Wondering if we should pin this to `ubuntu-18.04` and bump periodically as new versions arrive? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
