Skip to content

chore(deps-dev): bump pylint from 3.0.1 to 3.0.2 #211

chore(deps-dev): bump pylint from 3.0.1 to 3.0.2

chore(deps-dev): bump pylint from 3.0.1 to 3.0.2 #211

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.9]
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # ratchet:actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # ratchet:actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Show help
run: |
python spdxmerge/SPDXMerge.py --help
- name: Run pylint
run: |
pip install -r requirements-dev.txt
pylint **/*.py
- name: Run pytest
run: |
pytest .