-
Notifications
You must be signed in to change notification settings - Fork 9
126 lines (121 loc) · 3.61 KB
/
CI_build.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: CI Build
on:
push:
pull_request:
types: [opened, reopened]
jobs:
thorough_check:
name: Thorough code check / python-3.9 / ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Python info
run: |
which python
python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Show pip list
run: |
pip list
- name: Run test with coverage
run: pytest --cov --cov-report term --cov-report xml -m "not integration"
- name: Check style against standards using prospector
run: prospector -o grouped -o pylint:pylint-report.txt --ignore-paths notebooks
- name: Check whether import statements are used consistently
run: isort --check-only --diff .
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
basic_checks:
name: Basic code checks / python-${{ matrix.python-version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.9', '3.10']
exclude:
# already tested in first_check job
- python-version: 3.9
os: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Python info
run: |
which python
python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Show pip list
run: |
pip list
- name: Run tests
run: |
pytest -m "not integration"
integration_checks:
name: Integration code checks / python-${{ matrix.python-version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest']
python-version: ['3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Python info
run: |
which python
python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Show pip list
run: |
pip list
- name: Run tests
run: |
pytest -m "integration"
yml_checks:
name: envionment.yml checks / python-${{ matrix.python-version }} / ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: ms2query
environment-file: ./environment.yml
python-version: 3.9
- name: activate conda environment
run: |
conda activate ms2query
- name: Show conda list
run: |
conda info
conda list
- name: Run tests
run: |
pytest -m "not integration"