Skip to content

Add FSCTv3 Common SBOM Baseline Attributes checker #349

Add FSCTv3 Common SBOM Baseline Attributes checker

Add FSCTv3 Common SBOM Baseline Attributes checker #349

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:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install spdx-tools==0.8.3
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')