-
Notifications
You must be signed in to change notification settings - Fork 67
74 lines (59 loc) · 1.55 KB
/
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
name: build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Pin pip version
run: |
echo "pip_v=pip" >> $GITHUB_ENV
- name: Install dependencies
run: |
python -m pip install --upgrade "${{ env.pip_v }}" setuptools wheel
python -m pip install -e .
python -m pip install -r requirements-test.txt
- name: Build
run: |
python setup.py sdist bdist_wheel
- name: Tests
run: |
pytest --cov=snowplow_tracker --cov-report=xml
- name: MyPy
run: |
python -m pip install mypy
mypy snowplow_tracker --exclude '/test'
- name: Demo
run: |
cd examples
cd tracker_api_example
python app.py "localhost:9090"
- name: Snowplow Demo
run: |
cd examples
cd snowplow_api_example
python snowplow_app.py "localhost:9090"
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
coveralls_finish:
needs: ["build"]
runs-on: ubuntu-20.04
steps:
- name: Coveralls finished
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true