-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
epic: provide central develop page (#49)
* build: split requirements for dev extras (#43) * ci: add workflow for epic branches (#36) * ci: add note on sphinx-autobuild and tox sphinx-autobuild job (#47) * ci: ignore build folder for markdownlint * ci: ignore error message code-block * ci: limit Conda to Python <3.9 * fix: remove duplicate black requirement * fix: remove test job from CD * fix: reST indentation in branching page * docs: upgrade to Sphinx Book Theme 0.39 (#37) * chore: convert develop page to MyST (#41) * ci: use installed packages for pre-commit (#45) * ci: upgrate pre-commit * docs: reformulate develop page in general terms (#46)
- Loading branch information
Showing
17 changed files
with
791 additions
and
452 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: CI for epics | ||
|
||
on: | ||
push: | ||
branches: | ||
- epic/* | ||
pull_request: | ||
branches: | ||
- epic/* | ||
|
||
jobs: | ||
documentation: | ||
name: Build documentation and run notebooks | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install .[doc] | ||
sudo apt-get -y install pandoc graphviz | ||
- name: Build documentation and run notebooks | ||
working-directory: docs | ||
run: make html | ||
|
||
style: | ||
name: Style checks | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install .[ci] | ||
- name: Perform style checks | ||
run: tox -e sty |
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
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ module.exports = { | |
"ci", | ||
"chore", | ||
"docs", | ||
"epic", | ||
"feat", | ||
"fix", | ||
"refactor", | ||
|
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
Oops, something went wrong.