Skip to content

Update vol-IV-chap-13-sect-2.md #840

Update vol-IV-chap-13-sect-2.md

Update vol-IV-chap-13-sect-2.md #840

Workflow file for this run

name: ci
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: run requirements file
run: pip install -r requirements.txt
- name: Deploy docs
run: mkdocs gh-deploy --force
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}