Skip to content

Create README - LeetHub #142

Create README - LeetHub

Create README - LeetHub #142

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: automatic updating README
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run Update Python Script
run: |
python mySettings/utils/update_readme.py
- name: Run Update README.md File
run: |
git add .
git diff
git config --local user.email "sozerodev@gmail.com"
git config --local user.name "sozerodev"
git commit -m "Update README.md file"
git push