Skip to content

build(deps-dev): bump sphinx-rtd-theme from 3.0.0 to 3.0.1 #1276

build(deps-dev): bump sphinx-rtd-theme from 3.0.0 to 3.0.1

build(deps-dev): bump sphinx-rtd-theme from 3.0.0 to 3.0.1 #1276

Workflow file for this run

name: Lint pyzeebe
on: [push, pull_request]
jobs:
type-checking:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Init python poetry action
uses: abatilo/[email protected]
with:
poetry-version: 1.8.3
- name: Install dependencies
run: poetry install
- name: Lint with mypy
run: |
poetry run mypy pyzeebe
import-checking:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Init python poetry action
uses: abatilo/[email protected]
with:
poetry-version: 1.8.3
- name: Install dependencies
run: poetry install
- name: Check imports
run: |
poetry run isort . --check --diff
format-checking:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Init python poetry action
uses: abatilo/[email protected]
with:
poetry-version: 1.8.3
- name: Install dependencies
run: poetry install
- name: Check imports
run: |
poetry run black --check .