Skip to content

Bump the dependencies group with 2 updates #76

Bump the dependencies group with 2 updates

Bump the dependencies group with 2 updates #76

Workflow file for this run

name: Python - Lint
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11.x]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pipenv wheel
pipenv install --deploy --dev
- name: Lint with Python ${{ matrix.python-version }}
run: |
pipenv run lint
pipenv run black-check