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

fix: requirements.txt to reduce vulnerabilities #452

fix: requirements.txt to reduce vulnerabilities

fix: requirements.txt to reduce vulnerabilities #452

Workflow file for this run

name: Pylint
on: [push]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.11.8"]
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py') --exit-zero