blob: 5a01e9a54213a05bf91c27270daae392bf455fc0 (
plain)
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
|
name: tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
distutils:
- stdlib
- local
python:
- pypy-3.7
- 3.7
- 3.9
- "3.10"
platform:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.platform }}
env:
SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils }}
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
python -m pip install tox
- name: Run tests
run: tox -- --cov-report xml
- name: Publish coverage
if: false # disabled for #2727
uses: codecov/codecov-action@v1
with:
flags: >- # Mark which lines are covered by which envs
${{ runner.os }},
${{ matrix.python }}
test_cygwin:
strategy:
matrix:
distutils:
- stdlib
- local
runs-on: windows-latest
env:
SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils }}
steps:
- uses: actions/checkout@v2
- name: Install Cygwin with Python and tox
run: |
choco install git gcc-core python38-devel python38-pip --source cygwin
C:\\tools\\cygwin\\bin\\bash -l -x -c 'python3.8 -m pip install tox'
- name: Run tests
run: |
C:\\tools\\cygwin\\bin\\bash -l -x -c 'cd $(cygpath -u "$GITHUB_WORKSPACE") && tox -- --cov-report xml'
release:
needs: test
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install tox
run: |
python -m pip install tox
- name: Release
run: tox -e release
env:
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|