Skip to content

made cleaner functions with checking and ingesting URLs #363

made cleaner functions with checking and ingesting URLs

made cleaner functions with checking and ingesting URLs #363

Workflow file for this run

name: Format code
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: pip install yapf
run: pip install yapf
- name: Format code with yapf
run: yapf --in-place --recursive --parallel --style='{based_on_style: google, column_limit: 140, indent_width: 2}' --exclude '*.env' .

Check failure on line 17 in .github/workflows/yapf-format.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/yapf-format.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
- name: Commit changes
uses: EndBug/add-and-commit@v4
with:
author_name: ${{ github.actor }}
author_email: ${{ github.actor }}@users.noreply.github.com
message: "Format code"
add: "."
branch: ${{ github.ref }}