-
-
Notifications
You must be signed in to change notification settings - Fork 277
45 lines (36 loc) · 866 Bytes
/
pyenv.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
name: HTTPretty Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
python:
name: "Python"
runs-on: ubuntu-latest
strategy:
matrix:
python:
- 3.6.5
- 3.7.3
- 3.8.6
- 3.9.0
steps:
- uses: actions/checkout@v2
- name: Install python version
uses: gabrielfalcao/pyenv-action@v7
with:
default: "${{ matrix.python }}"
command: make setup
- name: Unit Tests
run: make unit
- name: Test Bugfixes
run: make bugfixes
- name: PyOpenSSL tests
run: make pyopenssl
- name: Functional Tests
run: make functional
- name: Upload Test Coverage Report
uses: Atrox/[email protected]
- name: Codecov link
run: echo "https://app.codecov.io/gh/gabrielfalcao/httpretty/"