Skip to content

I added two ways of reversing strings , but I was contemplating on adding the queue method #303

I added two ways of reversing strings , but I was contemplating on adding the queue method

I added two ways of reversing strings , but I was contemplating on adding the queue method #303

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: python-flake8-linter-run
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
job-python-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
# run linter on python file
- name: Run Lint with flake8!
run: flake8 . --ignore E302,E305,E501 --isolated --count --max-complexity=10 --statistics --show-source