Add classproperty
for spec_property
like behavior for classmethods.
#83
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
name: Publish docs via GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Deploy docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout master | |
uses: actions/checkout@v1 | |
- name: Deploy docs | |
uses: mhausenblas/mkdocs-deploy-gh-pages@1.24 | |
env: | |
CONFIG_FILE: docsite/mkdocs.yml | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |