-
Notifications
You must be signed in to change notification settings - Fork 0
145 lines (137 loc) · 4.37 KB
/
test.yaml
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
name: Test
on:
push:
pull_request:
branches: [ master ]
jobs:
Check:
name: Check Style Code
runs-on: ubuntu-20.04
steps:
#----------------------------------------------
# Check-out repo
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v4
#----------------------------------------------
# Install python
#----------------------------------------------
- name: Set up python
id: setup-python
uses: actions/[email protected]
with:
python-version: 3.7
#----------------------------------------------
# Configure poetry
#----------------------------------------------
- name: Install Poetry
uses: snok/[email protected]
with:
version: 1.1.13
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
#----------------------------------------------
# Install dependencies
#----------------------------------------------
- name: Install dependencies
run: poetry install --no-interaction
#----------------------------------------------
# Run Black style
#----------------------------------------------
- name: Black
run: |
source $VENV
black pprof --check
#----------------------------------------------
# Run PEP style
#----------------------------------------------
- name: Flake8
run: |
source $VENV
flake8 pprof/
Test:
name: Test Code
needs: [Check]
strategy:
matrix:
python: ['3.7','3.8','3.9']
platform: [ubuntu-20.04, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
defaults:
run:
shell: bash
steps:
#----------------------------------------------
# Check-out repo
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v4
#----------------------------------------------
# Install python
#----------------------------------------------
- name: Set up python
id: setup-python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python }}
#----------------------------------------------
# Configure poetry
#----------------------------------------------
- name: Install Poetry
uses: snok/[email protected]
with:
version: 1.1.14
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
#----------------------------------------------
# Install dependencies
#----------------------------------------------
- name: Install dependencies
run: poetry install --no-interaction
#----------------------------------------------
# Run tests
#----------------------------------------------
- name: Pytest
run: |
source $VENV
pytest
#----------------------------------------------
# Upload coverage to codecov
#----------------------------------------------
- name: Upload coverage artifact
uses: actions/upload-artifact@v3
if: matrix.python == '3.7' && matrix.platform == 'ubuntu-20.04'
with:
name: coverage
path: "*coverage.*"
Upload:
name: Uploading to Codecov
needs: [Test]
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
steps:
#----------------------------------------------
# Check-out repo
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v4
#----------------------------------------------
# Download coverage artifact
#----------------------------------------------
- name: Download coverage
uses: actions/download-artifact@v3
with:
name: coverage
#----------------------------------------------
# Upload coverage to codecov
#----------------------------------------------
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CI_CODECOV }}
file: ./coverage.xml
fail_ci_if_error: true