-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathgithub-actions.yml
More file actions
81 lines (81 loc) · 2.27 KB
/
github-actions.yml
File metadata and controls
81 lines (81 loc) · 2.27 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
name: build
on: [push, pull_request, workflow_dispatch]
jobs:
test:
name: {{ '${{ matrix.name }}' }}
runs-on: {{ '${{ matrix.os }}' }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
- name: 'check'
python: '3.13'
tox_env: 'check'
os: 'ubuntu-latest'
- name: 'docs'
python: '3.13'
tox_env: 'docs'
os: 'ubuntu-latest'
{% for env in tox_environments %}
{% set prefix = env.split('-')[0] -%}
{% set freethreaded = prefix.endswith('t') %}
{% if prefix.startswith('pypy') %}
{% set python %}pypy-{{ prefix[4] }}.{{ prefix[5:] }}{% endset %}
{% set cpython %}pp{{ prefix[4:5] }}{% endset %}
{% else %}
{% set python %}{{ prefix[2] }}.{{ prefix[3:].rstrip('t') }}{% endset %}
{% set cpython %}cp{{ prefix[2:] }}{% endset %}
{% endif %}
{% for os, python_arch in [
['ubuntu', 'x64'],
['windows', 'x64'],
['macos', 'arm64'],
] %}
- name: '{{ env }} ({{ os }}/{{ python_arch }})'
python: '{{ python }}'
python_arch: '{{ python_arch }}'
tox_env: '{{ env }}'
os: '{{ os }}-latest'
cover: true
{% endfor %}
{% endfor %}
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: {{ '${{ matrix.python }}' }}
architecture: {{ '${{ matrix.python_arch }}' }}
- name: install dependencies
run: |
python -mpip install --progress-bar=off -r ci/requirements.txt
virtualenv --version
pip --version
tox --version
pip list --format=freeze
- name: test
run: >
tox -e {{ '${{ matrix.tox_env }}' }} -v
- uses: coverallsapp/github-action@v2
if: matrix.cover
continue-on-error: true
with:
flag-name: {{ '${{ matrix.name }}' }}
parallel: true
- uses: codecov/codecov-action@v5
if: matrix.cover
with:
flags: {{ '${{ matrix.name }}' }}
token: {{ '${{ secrets.CODECOV_TOKEN }}' }}
verbose: true
finish:
needs: test
if: {{ '${{ always() }}' }}
runs-on: ubuntu-latest
steps:
- uses: coverallsapp/github-action@v2
with:
parallel-finished: true
{{- '' }}