Skip to content

update poetry version from 1.5.1 to 1.8.3 for github actions #27

update poetry version from 1.5.1 to 1.8.3 for github actions

update poetry version from 1.5.1 to 1.8.3 for github actions #27

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: pipx install poetry==1.8.3
- run: poetry install
- run: poetry run isort .
- uses: stefanzweifel/git-auto-commit-action@v4.16.0
with:
commit_message: isort code format run
run-black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- run: pipx install poetry==1.8.3
- run: poetry install
- run: poetry run black .
- uses: stefanzweifel/git-auto-commit-action@v4.16.0
with:
commit_message: black code format run