Skip to content

Update README.md with new git URL #122

Update README.md with new git URL

Update README.md with new git URL #122

name: Format python code
on:
workflow_dispatch:
push:
branches:
- develop
pull_request_target:
types:
- opened
- reopened
- synchronize
branches:
- develop
jobs:
autopep8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: autopep8
uses: peter-evans/autopep8@v1
with:
args: --recursive --in-place --aggressive --aggressive .
- name: Fail if autopep8 made changes
if: steps.autopep8.outputs.exit-code == 2
run: exit 1