Skip to content

chore(deps-dev): bump pytest from 8.1.1 to 8.2.2 #259

chore(deps-dev): bump pytest from 8.1.1 to 8.2.2

chore(deps-dev): bump pytest from 8.1.1 to 8.2.2 #259

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@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # ratchet:actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # 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 .