-
Notifications
You must be signed in to change notification settings - Fork 4
85 lines (67 loc) · 2.1 KB
/
dic2owl_ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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