Skip to content

chore(deps-dev): bump pefile from 2023.2.7 to 2024.8.26 #242

chore(deps-dev): bump pefile from 2023.2.7 to 2024.8.26

chore(deps-dev): bump pefile from 2023.2.7 to 2024.8.26 #242

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
merge_group:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Install dev requirements
run: pipenv install --dev
- name: Lint
run: pipenv run lint
- name: Format
run: pipenv run format_check