forked from snowplow/snowplow-python-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (61 loc) · 1.6 KB
/
ci.yml
File metadata and controls
75 lines (61 loc) · 1.6 KB
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
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"]
extras-required: [".", ".[redis]"]
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
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 ${{ matrix.extras-required }}
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: Demo
run: |
cd examples
cd tracker_api_example
python 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