Skip to content

Refactor Set class __str__ method to handle dangling sets and improve… #41

Refactor Set class __str__ method to handle dangling sets and improve…

Refactor Set class __str__ method to handle dangling sets and improve… #41

Workflow file for this run

name: Update docs/docs/index.md
on: push
permissions:
pull-requests: write
contents: write
repository-projects: write
jobs:
update-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update docs/docs/index.md
run: |
echo "Generating docs/docs/index.md..."
cat README.md > docs/docs/index.md
- name: Commit and push changes
run: |
git config --global user.name "coderatul"
git config --global user.email "[email protected]"
git add docs/docs/index.md
git commit -m "Update docs/docs/index.md"
git push