Skip to content

Refactor Playnite Web MQTT with ImageCompressor and error handling #148

Refactor Playnite Web MQTT with ImageCompressor and error handling

Refactor Playnite Web MQTT with ImageCompressor and error handling #148

Workflow file for this run

name: CI Checks
on:
pull_request:
merge_group:
jobs:
ci-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black bandit pytest pytest-cov
- name: Lint with flake8
run: |
flake8 .
- name: Check code formatting with black
run: |
black --check .
- name: Security analysis with bandit
run: |
bandit -r .