-
Notifications
You must be signed in to change notification settings - Fork 1
126 lines (120 loc) · 4.53 KB
/
Copy pathbuild-and-test.yml
File metadata and controls
126 lines (120 loc) · 4.53 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
# SPDX-FileCopyrightText: Copyright (c) Siemens AG 2019-2025 ALL RIGHTS RESERVED
# SPDX-License-Identifier: MIT
on:
workflow_call
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Install Poetry
run: |
pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: poetry
cache-dependency-path: poetry.lock
- name: Set Poetry environment
run: |
poetry env use ${{ matrix.python-version }}
- name: Install dependencies
run: |
poetry install --no-root
- name: Run the automated tests
run: |
poetry build
- name: Upload build artifacts
uses: actions/upload-artifact@v7
with:
name: build-${{ matrix.python-version }}
path: |
dist/*.whl
dist/*.tar.gz
tests:
runs-on: ubuntu-latest
permissions:
contents: write
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Install Poetry
run: |
pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: poetry
cache-dependency-path: poetry.lock
- name: Set Poetry environment
run: |
poetry env use ${{ matrix.python-version }}
- name: Install dependencies
run: |
poetry install --no-root
- name: Run the automated tests
run: |
poetry run tox run -e ${{ matrix.python-version }}
- name: Upload coverage results
uses: actions/upload-artifact@v7
with:
name: coverage-results-${{ matrix.python-version }}
path: coverage.xml
coverage-badge:
runs-on: ubuntu-latest
permissions:
contents: write
needs:
- tests
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Download coverage artifact
uses: actions/download-artifact@v8
with:
name: coverage-results-3.14
- name: Run coverage badge
run: |
sudo apt-get install xq
pip install anybadge
mkdir -p badges/
cov_value=$(xq --xpath "//coverage/@line-rate" coverage.xml)
cov_rounded=$(printf "%.1f\n" $(bc <<< "100*${cov_value}"))
echo "Coverage found: ${cov_rounded}%"
anybadge --label python:coverage --value ${cov_rounded} --suffix "%" --file badges/coverage-python.svg --overwrite
- uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "chore(docs): update coverage badge"
commit_user_name: "CI/CD Push Token"
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Install Poetry
run: |
pipx install poetry
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: poetry
cache-dependency-path: poetry.lock
- name: Set Poetry environment
run: |
poetry env use 3.14
- name: Install dependencies
run: |
poetry install --no-root
- name: Run the linting
run: |
poetry run tox run -e lint,type