Skip to content

Create LICENSE

Create LICENSE #11

Workflow file for this run

name: Deploy Documentation to GitHub Pages
on:
push:
branches:
- main
- setup-pages
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install sphinx==6.2.1
- name: Build documentation
run: |
cd docs
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html
allow_empty_commit: true
keep_files: true