Describes the current fact that the read_csv function and the COPY statement support different parameters. #4023
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: | |
markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Remove archive docs | |
run: | | |
rm -rf docs/archive | |
- uses: errata-ai/vale-action@reviewdog | |
with: | |
files: 'docs/,_posts/' | |
separator: "," | |
filter_mode: added | |
fail_on_error: false | |
- uses: articulate/actions-markdownlint@main | |
with: | |
config: .markdownlint.jsonc | |
files: 'docs/**/*.md _posts/*.md' | |
python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/black@stable | |
with: | |
options: "--check --skip-string-normalization --verbose --diff --color" | |
src: "./scripts" | |
version: "23.7.0" | |