Skip to content

Fix grcp fixture

Fix grcp fixture #583

Workflow file for this run

name: Lint pyzeebe
on: [push, pull_request]
jobs:
type-checking:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
container: python:${{ matrix.python-version }}
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
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
container: python:${{ matrix.python-version }}
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
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
container: python:${{ matrix.python-version }}
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 .