Skip to content

Bump pytest from 9.0.0 to 9.0.1 (#57) #80

Bump pytest from 9.0.0 to 9.0.1 (#57)

Bump pytest from 9.0.0 to 9.0.1 (#57) #80

Workflow file for this run

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