Skip to content

chore(deps): bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.14 #242

chore(deps): bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.14

chore(deps): bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.14 #242

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