Skip to content

chore: changing github action lint workflow #5

chore: changing github action lint workflow

chore: changing github action lint workflow #5

Workflow file for this run

name: Lint and Format
on: push
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Install dependencies
run: |
pipenv install --dev
- name: Run format and lint
run: |
pipenv run format
pipenv run lint