Skip to content

Bump the action-packages group across 1 directory with 7 updates #211

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

Bump the action-packages group across 1 directory with 7 updates #211

Workflow file for this run

---
on: push
permissions:
contents: read
jobs:
code-inspection:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Set up python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
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