Skip to content

Bump the action-packages group with 7 updates #193

Bump the action-packages group with 7 updates

Bump the action-packages group with 7 updates #193

Workflow file for this run

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