Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
# Conflicts:
#	requiam/commons.py
  • Loading branch information
astrochun committed Jul 28, 2021
2 parents 4f541a5 + d3d655a commit 8c9a943
Show file tree
Hide file tree
Showing 35 changed files with 1,598 additions and 467 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
id: create_release
uses: actions/create-release@v1
env:
# This token is provided by Actions, you do not need to create your own token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# PAT via redata-bot
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ on:
- '**.png'
- 'img/*'
- 'LICENSE'
- 'docs/**'
pull_request:
paths-ignore:
- '**.md'
- '**.png'
- 'img/*'
- 'LICENSE'
- 'docs/**'

jobs:
build:
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/sphinx-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Sphinx Docs Check"
on:
push:
paths:
- 'docs/**'
- 'requiam/**'
- '.github/workflows/sphinx*yml'
pull_request:
paths:
- 'docs/**'
- 'requiam/**'
- '.github/workflows/sphinx*yml'

jobs:
docs:
runs-on: ubuntu-latest

steps:
- name: Checkout requiam
uses: actions/checkout@v2
- name: Sphinx build
uses: ammaraskar/sphinx-action@master
with:
docs-folder: "docs/"
Loading

0 comments on commit 8c9a943

Please sign in to comment.