Update README.md #16
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: Update README | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
update-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Update README | |
run: python update_readme.py | |
- name: Commit and Push | |
run: | | |
git config --global user.name 'JinHyung-Park' | |
git config --global user.email '[email protected]' | |
git add README.md | |
git commit -m "Update README" | |
git push |