-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (61 loc) · 1.58 KB
/
test.yml
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
name: tests
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- python: "3.10"
toxenv: flake8
os: ubuntu-latest
- python: "3.10"
toxenv: mypy
os: ubuntu-latest
- python: "3.10"
toxenv: pylint
os: ubuntu-latest
- python: "3.10"
toxenv: black
os: ubuntu-latest
- python: "3.10"
toxenv: tilescope
os: ubuntu-latest
- python: 3.8
toxenv: py38
os: ubuntu-latest
- python: 3.9
toxenv: py39
os: ubuntu-latest
- python: "3.10"
toxenv: py310
os: ubuntu-latest
- python: "3.11"
toxenv: py311
os: ubuntu-latest
- python: pypy-3.8
toxenv: pypy38
os: ubuntu-latest
- python: pypy-3.9
toxenv: pypy39
os: ubuntu-latest
- python: "3.10"
toxenv: py310
os: macos-latest
- python: "3.11"
toxenv: py311
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: install dependencies
run: python -m pip install --upgrade pip tox
- name: run
env:
TOXENV: ${{ matrix.toxenv }}
run: tox
- name: setup
run: python setup.py install