Skip to content

Bump pillow from 10.2.0 to 10.3.0 #1288

Bump pillow from 10.2.0 to 10.3.0

Bump pillow from 10.2.0 to 10.3.0 #1288

Workflow file for this run

name: Lint Code
on:
push:
branches: [ dev, main ]
pull_request:
branches: [ dev ]
jobs:
lint_code:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
steps:
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
curl -sSL https://raw.githubusercontent.com/legendu-net/icon/main/install_icon.sh | sudo bash -
icon pt -ic
~/.local/bin/poetry env use python3
~/.local/bin/poetry install -E all
- name: Lint with pylint
run: |
~/.local/bin/poetry run pylint -E aiutil/ tests/
# - name: Lint with pytype
# run: |
# ~/.local/bin/poetry run pytype ./
- name: Check code format
run: |
~/.local/bin/poetry run black --check ./