Skip to content

Merge branch 'main' of https://github.com/razinc/fplysis #15

Merge branch 'main' of https://github.com/razinc/fplysis

Merge branch 'main' of https://github.com/razinc/fplysis #15

Workflow file for this run

name: code-format
on: [push, pull_request]
jobs:
run-isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- run: python -m pip install poetry
- run: poetry install
- run: poetry run isort .
- uses: stefanzweifel/[email protected]
with:
commit_message: isort code format run
run-black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- run: python -m pip install poetry
- run: poetry install
- run: poetry run black .
- uses: stefanzweifel/[email protected]
with:
commit_message: black code format run