Skip to content

[Silver IV] Title: 요세푸스 문제 0, Time: 184 ms, Memory: 24396 KB -Baekjoo… #17

[Silver IV] Title: 요세푸스 문제 0, Time: 184 ms, Memory: 24396 KB -Baekjoo…

[Silver IV] Title: 요세푸스 문제 0, Time: 184 ms, Memory: 24396 KB -Baekjoo… #17

Workflow file for this run

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