Skip to content

Bump the action-packages group across 1 directory with 9 updates #249

Bump the action-packages group across 1 directory with 9 updates

Bump the action-packages group across 1 directory with 9 updates #249

Workflow file for this run

---
on: push
permissions:
contents: read
jobs:
code-inspection:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[code-inspection]
- name: Run pylint
run: pylint file_watcher file_watcher_operator/file_watcher_operator.py
- name: Run MyPy
run: mypy --strict file_watcher file_watcher_operator