Skip to content

update default schedule time to 5 min interval and add domains.json file #8

update default schedule time to 5 min interval and add domains.json file

update default schedule time to 5 min interval and add domains.json file #8

Workflow file for this run

name: Pylint
on:
workflow_dispatch:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')