This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch kaxil-patch-1 in repository https://gitbox.apache.org/repos/asf/airflow-on-k8s-operator.git
commit bb741886256dae854adaceb1b0212f6913a90e65 Author: Kaxil Naik <[email protected]> AuthorDate: Sat Feb 29 11:55:37 2020 +0000 Create .travis.yml --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..bd854c5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +--- +dist: bionic +language: python +os: linux +python: "3.6" +stages: + - pre-test +services: + - docker +jobs: + include: + - name: "Static checks" + stage: pre-test + script: ./scripts/ci/ci_run_all_static_checks.sh + env: >- + PYTHON_VERSION=3.6 + AIRFLOW_MOUNT_SOURCE_DIR_FOR_STATIC_CHECKS="true" + SKIP=pylint-tests
