Skip to content

docs: added table of contents and renamed headings #16

docs: added table of contents and renamed headings

docs: added table of contents and renamed headings #16

Workflow file for this run

name: Build
on:
push:
branches:
- master
jobs:
readme:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Generate README
run: make
- name: Commit and push changes
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email 'github-actions@example.com'
git add .
git commit -m "chore: automatically generated README.md"
git push origin master