-
Notifications
You must be signed in to change notification settings - Fork 16
129 lines (111 loc) · 3.46 KB
/
Copy pathtests.yml
File metadata and controls
129 lines (111 loc) · 3.46 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
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
name: Tests
on:
pull_request: ~
push:
branches: [ main ]
# Allow job to be triggered manually.
workflow_dispatch:
# Cancel in-progress jobs when pushing to the same branch.
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-22.04" ] # , macos-latest, windows-latest ]
python-version: [
"3.7",
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
"3.14",
]
mosquitto-version: [ "2.0" ]
influxdb-version: [ "1.8" ]
grafana-version: [ "12.3.2" ]
# include:
# - grafana-version: "7.5.17"
# python-version: "3.14"
# mosquitto-version: "2.0"
# influxdb-version: "1.8"
# os: "ubuntu-22.04"
# - grafana-version: "8.5.27"
# python-version: "3.14"
# mosquitto-version: "2.0"
# influxdb-version: "1.8"
# os: "ubuntu-22.04"
# - grafana-version: "9.5.21"
# python-version: "3.14"
# mosquitto-version: "2.0"
# influxdb-version: "1.8"
# os: "ubuntu-22.04"
# - grafana-version: "10.4.19"
# python-version: "3.14"
# mosquitto-version: "2.0"
# influxdb-version: "1.8"
# os: "ubuntu-22.04"
# - grafana-version: "11.6.9"
# python-version: "3.14"
# mosquitto-version: "2.0"
# influxdb-version: "1.8"
# os: "ubuntu-22.04"
# https://docs.github.com/en/free-pro-team@latest/actions/guides/about-service-containers
services:
influxdb:
image: influxdb:${{ matrix.influxdb-version }}
ports:
- 8083:8083
- 8086:8086
grafana:
image: grafana/grafana:${{ matrix.grafana-version }}
ports:
- 3000:3000
env:
GF_SECURITY_ADMIN_PASSWORD: admin
mongodb:
image: mongo:8
ports:
- 27017:27017
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
DOCKER_MIN_API_VERSION: v1.24
name: Python ${{ matrix.python-version }}, Grafana ${{ matrix.grafana-version }}, Mosquitto ${{ matrix.mosquitto-version }}, InfluxDB ${{ matrix.influxdb-version }}
steps:
- name: Acquire sources
uses: actions/checkout@v6
- name: Start Mosquitto
uses: namoshek/mosquitto-github-action@v1
env:
DOCKER_MIN_API_VERSION: v1.24
with:
version: ${{ matrix.mosquitto-version }}
ports: '1883:1883 8883:8883'
# certificates: ${{ github.workspace }}/.ci/tls-certificates
config: ${{ github.workspace }}/etc/test/mosquitto-no-auth.conf
# container-name: 'mqtt'
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
architecture: x64
cache: 'pip'
cache-dependency-path: |
setup.py
- name: Run tests, with coverage
run: |
make test-coverage
# https://github.com/codecov/codecov-action
- name: Upload coverage results to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
env_vars: OS,PYTHON
fail_ci_if_error: true