Skip to content

create added on cart form and update product_detail function #10

create added on cart form and update product_detail function

create added on cart form and update product_detail function #10

Workflow file for this run

name: Lint code
on: [push, pull_request]
jobs:
flake8:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install flake8 black
- name: Run flake8
run: |
flake8 $(git ls-files '*.py')
# - name: Run Black
# run: |
# black --check $(git ls-files '*.py')