blob: b59e08d97a7608ff4ebfa5f1ead4256fa0b5f733 (
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
|
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
name: "Test Suite"
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_dispatch:
jobs:
tests:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "pypy3"]
exclude:
# Windows PyPy doesn't seem to work?
- os: windows-latest
python-version: "pypy3"
fail-fast: false
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install Visual C++ for Python 2.7"
if: runner.os == 'Windows'
run: |
choco install vcpython27 -f -y
- name: "Install dependencies"
shell: bash
run: |
set -xe
python -VV
python -m site
python -m pip install -r requirements/ci.pip
- name: "Run tox targets for ${{ matrix.python-version }}"
shell: bash
run: |
python -m tox
|