Skip to content

Bump pillow from 9.0.1 to 10.2.0 in /components/base_images/tutorial #7

Bump pillow from 9.0.1 to 10.2.0 in /components/base_images/tutorial

Bump pillow from 9.0.1 to 10.2.0 in /components/base_images/tutorial #7

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI - Vertex Pipelines starter kit
on:
workflow_dispatch:
branches: ["*"]
push:
branches: [ "master" ]
pull_request:
branches: [ "dev", "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-cicd.txt
- name: Formating - Linting - Sorting imports
run: |
black . --check --verbose --diff --color
flake8 . --exclude=venv,notebooks
isort . -c --profile black