Bump zensical from 0.0.15 to 0.0.17 in the non-major-versions group #834
Workflow file for this run
This file contains hidden or 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: Zensical Build | |
| permissions: | |
| contents: write # only for delete-branch option | |
| issues: write | |
| pull-requests: write | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '0 6 * * 6' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download source | |
| uses: actions/[email protected] | |
| - name: Install Python | |
| uses: actions/[email protected] | |
| with: | |
| python-version: '3.12' | |
| - name: Install dependencies | |
| run: pip install -r docs/requirements.txt | |
| - name: Build site | |
| run: zensical build |