Skip to content

Update depends.py

Update depends.py #19

Workflow file for this run

name: Formatting
on:
push:
branches:
- main
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install black
run: pip install black
- name: Run black
run: |
black .
- name: Commit changes
run: |
git config --global user.email "fast.code.auth@gmail.com"
git config --global user.name "FastCodeProfile"
git add .
git diff-index --quiet HEAD || git commit -m "Auto-format code with Black"
git push https://$GH_TOKEN@github.com/${GITHUB_REPOSITORY}.git HEAD:main