Remove the ignored safety ID related to RDFLib #296
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI - dic2owl | |
on: | |
push: | |
paths: | |
- 'dic2owl/**' | |
- 'tests/**' | |
- '.github/**' | |
jobs: | |
pre-commit-dic2owl: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U setuptools wheel | |
pip install pre-commit | |
- name: Run pre-commit | |
run: SKIP=pylint pre-commit run --all-files | |
pylint-safety: | |
name: PyLint and safety | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U setuptools wheel | |
pip install -U -r dic2owl/requirements.txt -r dic2owl/requirements_dev.txt | |
pip install safety | |
- name: Run PyLint | |
run: pylint --rcfile=dic2owl/pyproject.toml dic2owl/**/*.py | |
# Ignore ID 44715, 44716, and 44717 for now. | |
# See this NumPy issue for more information: | |
# https://github.com/numpy/numpy/issues/19038 | |
# When dropping Python 3.7 support, these vulnerabilities are fixed and can be | |
# removed from the ignore list. | |
- name: Run safety | |
run: pip freeze | safety check --stdin --ignore 44715 --ignore 44716 --ignore 44717 | |
dic2owl-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
pip install -U setuptools wheel | |
pip install -e dic2owl[dev] | |
- name: Run unit tests with PyTest | |
run: pytest -c dic2owl/pyproject.toml |