Skip to content

chore(deps): update abatilo/actions-poetry action to v3 #1030

chore(deps): update abatilo/actions-poetry action to v3

chore(deps): update abatilo/actions-poetry action to v3 #1030

Workflow file for this run

name: Lint pyzeebe
on: [push, pull_request]
jobs:
type-checking:
runs-on: ubuntu-latest
container: python:3.8
steps:
- uses: actions/checkout@v4
- name: Init python poetry action
uses: abatilo/actions-poetry@v3.0.0
with:
poetry-version: 1.5.1
- name: Install dependencies
run: poetry install
- name: Lint with mypy
run: |
poetry run mypy pyzeebe
import-checking:
runs-on: ubuntu-latest
container: python:3.8
steps:
- uses: actions/checkout@v4
- name: Init python poetry action
uses: abatilo/actions-poetry@v3.0.0
with:
poetry-version: 1.5.1
- name: Install dependencies
run: poetry install
- name: Check imports
run: |
poetry run isort . --check --diff
format-checking:
runs-on: ubuntu-latest
container: python:3.8
steps:
- uses: actions/checkout@v4
- name: Init python poetry action
uses: abatilo/actions-poetry@v3.0.0
with:
poetry-version: 1.5.1
- name: Install dependencies
run: poetry install
- name: Check imports
run: |
poetry run black --check .