-
Notifications
You must be signed in to change notification settings - Fork 5
93 lines (75 loc) · 1.98 KB
/
tests.yml
File metadata and controls
93 lines (75 loc) · 1.98 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
name: Tests
on:
create:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Python
uses: actions/setup-python@v2
- name: Build
run: |
pip install setuptools wheel
./setup.py bdist_wheel
- name: Upload build wheel
uses: actions/upload-artifact@v4
with:
name: wheel
path: dist/*.whl
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v2
- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Setup python dependencies
run: |
pip install -q -r requirements.txt
pip install -q -r requirements_test.txt
- name: Run tests
run: |
coverage run -m unittest
- name: Coveralls Parallel
uses: AndreMiras/coveralls-python-action@develop
with:
github-token: ${{ secrets.github_token }}
flag-name: unit-tests-python${{ matrix.python-version }}
parallel: true
finish:
needs:
- build
- unit-tests
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
- uses: actions/download-artifact@v4
if: startsWith(github.ref, 'refs/tags')
with:
name: wheel
path: dist
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}