Skip to content

Set IgnoredVulns in osv-scanner config #402

Set IgnoredVulns in osv-scanner config

Set IgnoredVulns in osv-scanner config #402

Workflow file for this run

name: pylint
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pylint==3.3.3
pip install spdx-tools==0.8.3
- name: Analysing the code with Pylint
run: |
pylint $(git ls-files '*.py')