Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Add error handling to daily loops #23

Add error handling to daily loops

Add error handling to daily loops #23

Workflow file for this run

name: Pylint
on:
push:
branches:
- master
paths:
- '**.py'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint --disable=C0114,C0115,C0116 --fail-under=7.0 $(git ls-files '*.py')