-
Notifications
You must be signed in to change notification settings - Fork 117
45 lines (44 loc) · 967 Bytes
/
ci.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
---
name: build
on: push
jobs:
tox:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python:
- py27
- py37
httplib:
- default
- fido
- fido-requests2dot17
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 2.7
- uses: actions/setup-python@v2
with:
python-version: 3.7
- run: pip install tox
- run: tox -e ${{ matrix.python }}-${{ matrix.httplib }}
misc:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
tox:
- mypy
- pre-commit
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 2.7
- uses: actions/setup-python@v2
with:
python-version: 3.7
- run: pip install tox
- run: tox -e ${{ matrix.tox }}