Merge pull request #469 from anmol098/fix/commit_pagination_retrievin… #224
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CODESTYLE | |
on: | |
push: | |
jobs: | |
lint: | |
name: Run codestyle check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Setup Python 3.11 🐍 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install Dependencies 📥 | |
run: pip install -r requirements.txt | |
- name: Run Codestyle ✔️ | |
run: flake8 --max-line-length=160 --exclude venv,assets . && black --line-length=160 --check --exclude='/venv/|/assets/' . |