-
Notifications
You must be signed in to change notification settings - Fork 695
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://github.com/adrienverge/yamllint https://yamllint.readthedocs.io/en/stable/ https://yamllint.readthedocs.io/en/stable/integration.html#integration-with-pre-commit https://yamllint.readthedocs.io/en/stable/rules.html Also ran `pre-commit autoupdate` to update the hooks. https://pre-commit.com/#pre-commit-autoupdate
- Loading branch information
Showing
13 changed files
with
350 additions
and
340 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,24 +6,24 @@ notifications: | |
pullrequests_comment: [email protected] | ||
jira_options: link label worklog | ||
github: | ||
description: "A cluster computing framework for processing large-scale geospatial data" | ||
homepage: https://sedona.apache.org/ | ||
autolink_jira: | ||
- SEDONA | ||
labels: | ||
- geospatial | ||
- cluster-computing | ||
- spatial-query | ||
- spatial-analysis | ||
- spatial-sql | ||
- scala | ||
- java | ||
- python | ||
features: | ||
# Enable wiki for documentation | ||
wiki: false | ||
# Enable issue management | ||
issues: true | ||
# Enable projects for project management boards | ||
projects: false | ||
ghp_branch: | ||
description: "A cluster computing framework for processing large-scale geospatial data" | ||
homepage: https://sedona.apache.org/ | ||
autolink_jira: | ||
- SEDONA | ||
labels: | ||
- geospatial | ||
- cluster-computing | ||
- spatial-query | ||
- spatial-analysis | ||
- spatial-sql | ||
- scala | ||
- java | ||
- python | ||
features: | ||
# Enable wiki for documentation | ||
wiki: false | ||
# Enable issue management | ||
issues: true | ||
# Enable projects for project management boards | ||
projects: false | ||
ghp_branch: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
# https://yamllint.readthedocs.io/en/stable/ | ||
extends: default | ||
|
||
rules: | ||
colons: disable | ||
comments: disable | ||
comments-indentation: disable | ||
document-start: disable | ||
line-length: disable | ||
truthy: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
actualy | ||
afterall | ||
atmost | ||
bu | ||
celle | ||
checkin | ||
eiter | ||
errorprone | ||
fpt | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,62 +15,62 @@ jobs: | |
build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '8' | ||
- name: Compile JavaDoc | ||
run: mvn -q clean install -DskipTests && mkdir -p docs/api/javadoc/spark && cp -r spark/common/target/apidocs/* docs/api/javadoc/spark/ | ||
- name: Compile ScalaDoc | ||
run: mvn scala:doc && mkdir -p docs/api/scaladoc/spark && cp -r spark/common/target/site/scaladocs/* docs/api/scaladoc/spark | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: pip install mkdocs-jupyter | ||
- run: pip install mkdocs-material | ||
- run: pip install mkdocs-macros-plugin | ||
- run: pip install mkdocs-git-revision-date-localized-plugin | ||
- run: pip install mike | ||
- run: sudo apt update | ||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: release | ||
use-public-rspm: true | ||
- name: Query R dependencies | ||
uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
cache: true | ||
extra-packages: | | ||
any::pkgdown | ||
working-directory : './R' | ||
- run: Rscript -e 'pkgdown::build_site(pkg = "./R", preview = FALSE, override = list(destination = "../docs/api/rdocs"))' | ||
- run: git config --global user.name = "GitHub Action" | ||
- run: git config --global user.email = "[email protected]" | ||
- run: mkdocs build | ||
- run: git fetch origin website --depth=1 | ||
- name: Deploy the doc to the website branch | ||
if: ${{ github.event_name != 'pull_request' && github.repository == 'apache/sedona' }} | ||
run: mike deploy latest-snapshot -b website -p | ||
- run: mkdir staging | ||
- run: cp -r site/* staging/ | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: generated-docs | ||
path: staging | ||
- name: Cache Python packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Cache Maven packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: ${{ runner.os }}-m2 | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '8' | ||
- name: Compile JavaDoc | ||
run: mvn -q clean install -DskipTests && mkdir -p docs/api/javadoc/spark && cp -r spark/common/target/apidocs/* docs/api/javadoc/spark/ | ||
- name: Compile ScalaDoc | ||
run: mvn scala:doc && mkdir -p docs/api/scaladoc/spark && cp -r spark/common/target/site/scaladocs/* docs/api/scaladoc/spark | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: pip install mkdocs-jupyter | ||
- run: pip install mkdocs-material | ||
- run: pip install mkdocs-macros-plugin | ||
- run: pip install mkdocs-git-revision-date-localized-plugin | ||
- run: pip install mike | ||
- run: sudo apt update | ||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: release | ||
use-public-rspm: true | ||
- name: Query R dependencies | ||
uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
cache: true | ||
extra-packages: | | ||
any::pkgdown | ||
working-directory : './R' | ||
- run: Rscript -e 'pkgdown::build_site(pkg = "./R", preview = FALSE, override = list(destination = "../docs/api/rdocs"))' | ||
- run: git config --global user.name = "GitHub Action" | ||
- run: git config --global user.email = "[email protected]" | ||
- run: mkdocs build | ||
- run: git fetch origin website --depth=1 | ||
- name: Deploy the doc to the website branch | ||
if: ${{ github.event_name != 'pull_request' && github.repository == 'apache/sedona' }} | ||
run: mike deploy latest-snapshot -b website -p | ||
- run: mkdir staging | ||
- run: cp -r site/* staging/ | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: generated-docs | ||
path: staging | ||
- name: Cache Python packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Cache Maven packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: ${{ runner.os }}-m2 |
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
Oops, something went wrong.