Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Bump black from 23.7.0 to 23.9.1 #122

Bump black from 23.7.0 to 23.9.1

Bump black from 23.7.0 to 23.9.1 #122

Workflow file for this run

name: linters
on:
push:
branches:
- master
pull_request:
paths:
- 'oscclip'
- 'poetry.lock'
- '.github/**'
- 'tests/**'
jobs:
linters:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v8
- uses: actions/cache@v3
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- name: Install Dependencies
run: |
poetry install
- name: Run ruff
run: |
poetry run ruff check oscclip
- name: Run mypy
run: |
poetry run mypy oscclip
- name: Run black
run: |
poetry run black --check --verbose oscclip