Update dependencies (#167) #284
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 for now. | |
# See this NumPy issue for more information: https://github.com/numpy/numpy/issues/19038 | |
# Remove ignoring 48547 as soon as RDFLib/rdflib#1844 has been fixed and the fix | |
# has been released. | |
- name: Run safety | |
run: pip freeze | safety check --stdin --ignore 44715 --ignore 44716 --ignore 44717 --ignore 48547 | |
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 |