[PYTHON]ops: update airflow setup & Python packages #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Lint Code Base | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
with: | |
# Full git history is needed to get a proper list | |
# of changed files within `super-linter` | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: github/super-linter@v4 | |
env: | |
VALIDATE_ALL_CODEBASE: false # Only new or edited files | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_JSCPD: false # Copy/paste detection | |
VALIDATE_GITHUB_ACTIONS: false # Due to shellcheck SC2086 issues | |
VALIDATE_MARKDOWN: false # Due to multiple headings issue | |
# VALIDATE_PYTHON_BLACK: false # Not using black | |
VALIDATE_DOCKERFILE_HADOLINT: false | |
VALIDATE_HTML: false | |
PYTHON_FLAKE8_CONFIG_FILE: .flake8 |