Skip to content

Bump pillow from 10.0.1 to 10.2.0 in /controller #23

Bump pillow from 10.0.1 to 10.2.0 in /controller

Bump pillow from 10.0.1 to 10.2.0 in /controller #23

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
name: Test Controller
on:
push:
paths:
- controller/**
branches: [ "main" ]
pull_request:
paths:
- controller/**
branches: [ "main" ]
permissions:
contents: read
env:
python-version: '3.11'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{env.python-version}}
uses: actions/setup-python@v3
with:
python-version: "${{env.python-version}}"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make install-dev
make create-config
make create-env
make create-views-file
- name: Pylint
run: |
make lint-pylint
- name: Flake8
run: |
make lint-flake8
- name: Mypy
run: |
make typing-mypy
- name: Pytest
run: |
make test-controller
- name: Bandit
run: |
make bandit-scan