Add ST_Transform() example that uses an NTv2 grid file #5696
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-22.04 | |
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-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/black@stable | |
with: | |
options: "--check --skip-string-normalization --verbose --diff --color" | |
src: "./scripts" | |
version: "24.8.0" |