Skip to content

update copyright end year #58

update copyright end year

update copyright end year #58

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install tox
- name: build docs
run: tox -e docs
- name: publish docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist/docs
enable_jekyll: false