Skip to content

Bump pytest from 7.4.4 to 8.2.1 #768

Bump pytest from 7.4.4 to 8.2.1

Bump pytest from 7.4.4 to 8.2.1 #768

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@v2
- name: Init python poetry action
uses: abatilo/[email protected]
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@v2
- name: Init python poetry action
uses: abatilo/[email protected]
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@v2
- name: Init python poetry action
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
- name: Install dependencies
run: poetry install
- name: Check imports
run: |
poetry run black --check .