-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: move last SuperLinter check
yamllint
to pre-commit (#124)
This also removes SuperLinter from DGP since all utilized checks have been migrated to pre-commit.
- Loading branch information
Showing
7 changed files
with
94 additions
and
105 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
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
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 |
---|---|---|
|
@@ -10,25 +10,25 @@ jobs: | |
OS: ubuntu-20.04 | ||
PYTHON: '3.9' | ||
steps: | ||
- uses: actions/checkout@master | ||
with: | ||
fetch-depth: "1" | ||
- name: Setup Python | ||
uses: actions/setup-python@master | ||
with: | ||
python-version: 3.9 | ||
- name: Setup requirements and run sphinx | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install cython==0.29.21 numpy==1.23.2 | ||
pip install -r requirements.txt | ||
pip install -r requirements-dev.txt | ||
pip install -r docs/requirements-doc.txt | ||
cd docs | ||
make html | ||
- name: Push Sphinx Pages to Webserver | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: ./docs/build/html | ||
commit-message: 'docs: update build documentation' | ||
- uses: actions/checkout@master | ||
with: | ||
fetch-depth: "1" | ||
- name: Setup Python | ||
uses: actions/setup-python@master | ||
with: | ||
python-version: 3.9 | ||
- name: Setup requirements and run sphinx | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install cython==0.29.21 numpy==1.23.2 | ||
pip install -r requirements.txt | ||
pip install -r requirements-dev.txt | ||
pip install -r docs/requirements-doc.txt | ||
cd docs | ||
make html | ||
- name: Push Sphinx Pages to Webserver | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: ./docs/build/html | ||
commit-message: 'docs: update build documentation' |
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
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,8 @@ | ||
extends: default | ||
|
||
rules: | ||
line-length: disable | ||
document-start: disable # Allow missing "---" file prelude. | ||
truthy: | ||
check-keys: false # Allow keys that look like truthy literals, such as `on`. | ||
comments: disable # Allow single space between non-comment and comment. |