Skip to content

Bump pre-commit from 3.2.2 to 3.3.1 #225

Bump pre-commit from 3.2.2 to 3.3.1

Bump pre-commit from 3.2.2 to 3.3.1 #225

Workflow file for this run

name: Lint
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-test.txt
- name: Lint with ruff
run: |
ruff python_scripts
- name: Check with Black Code Formatter
run: |
black python_scripts --check