Skip to content

added check if is_dirty is already set (#215) #30

added check if is_dirty is already set (#215)

added check if is_dirty is already set (#215) #30

Workflow file for this run

name: Mypy
on:
push:
branches:
- "master"
- "main"
pull_request:
branches:
- "master"
- "main"
workflow_dispatch:
jobs:
mypy:
name: Mypy
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.x"]
steps:
- name: Check out repository code
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
python -m pip install --upgrade poetry wheel
- name: Install dependencies
run: |
poetry install
- name: Run mypy type checks
run: |
poetry run mypy ./flowpipe