Refactor Set class __str__ method to handle dangling sets and improve… #41
This file contains 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: 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 | |