Skip to content

ci.yml ignore set e501 and w292 #8

ci.yml ignore set e501 and w292

ci.yml ignore set e501 and w292 #8

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8
- name: lint with flake8
run: flake8 --ignore=E501,W292
- name: run tests
run: |
pip install pytest
pytest