switch from file to folder loading (write_local_folder_to_s3) #3
Workflow file for this run
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 | |
on: | |
- pull_request | |
jobs: | |
linting: | |
name: lint-job | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements-lint.txt | |
- name: Lint SQL files with SQLFluff | |
run: sqlfluff lint --ignore=templating mojap_derived_tables/. | |
- name: Lint YAML files with yamllint | |
run: yamllint . | |
- name: Lint Python files with Flake8 | |
run: flake8 . |