Skip to content

Commit d902bb0

Browse files
committed
CI
1 parent efa5b74 commit d902bb0

File tree

8 files changed

+53
-0
lines changed

8 files changed

+53
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## PR Summary
2+
3+
4+
<!--
5+
To create a new package yml, make a new file with your package name in the `packages/`
6+
directory with a yml suffix. Examples can be seen in the `packages/` directory, but
7+
at the minimum you need to include the `repo:`, `section:` and `description:` fields.
8+
Please keep the description very short.
9+
10+
Other useful fields are `site:`, `pypi_name`, `conda_package`, (if different from the
11+
github name), and `conda_channel` if not *conda-forge*.
12+
-->

.github/.githubold/workflows/main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
on: [status]
2+
jobs:
3+
circleci_artifacts_redirector_job:
4+
runs-on: ubuntu-latest
5+
name: Run CircleCI artifacts redirector
6+
steps:
7+
- name: GitHub Action step
8+
uses: larsoner/circleci-artifacts-redirector-action@master
9+
with:
10+
repo-token: ${{ secrets.GITHUB_TOKEN }}
11+
artifact-path: 0/docs/_build/html/index.html
12+
circleci-jobs: build_docs

.github/pull_request_template.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## PR Summary
2+
3+
4+
<!--
5+
To create a new package yml, make a new file with your package name in the `packages/`
6+
directory with a yml suffix. Examples can be seen in the `packages/` directory, but
7+
at the minimum you need to include the `repo:`, `section:` and `description:` fields.
8+
Please keep the description very short.
9+
10+
Other useful fields are `site:`, `pypi_name`, `conda_package`, (if different from the
11+
github name), and `conda_channel` if not *conda-forge*.
12+
-->

.github/workflows/main.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "Pull Request Docs Check"
2+
on:
3+
- pull_request
4+
5+
jobs:
6+
docs:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: ammaraskar/sphinx-action@master
11+
with:
12+
docs-folder: "docs/"
13+
- uses: actions/upload-artifact@v1
14+
with:
15+
name: DocumentationHTML
16+
path: docs/_build/html/

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pydata-sphinx-theme>=0.6.0

0 commit comments

Comments
 (0)