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

build(deps): Bump cryptography from 41.0.5 to 41.0.6 (#59) #28

build(deps): Bump cryptography from 41.0.5 to 41.0.6 (#59)

build(deps): Bump cryptography from 41.0.5 to 41.0.6 (#59) #28

Workflow file for this run

name: Pylint
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '38 2 * * 4'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint requests
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')