-
Notifications
You must be signed in to change notification settings - Fork 18
105 lines (84 loc) · 2.57 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: Test & Lint
on:
- push
defaults:
run:
shell: sh
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- ubuntu-18.04
- macos-latest
python-version:
- '3.9'
- '3.8'
- '3.7'
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
# note: IFF running on Windows...
#
# - name: Set up console (Windows)
# if: runner.os == 'Windows'
# run: echo "PYTHONIOENCODING=UTF-8" >> $GITHUB_ENV
- name: Determine pip cache path
id: pip-cache
run: echo ::set-output name=dir::$(pip cache dir)
- name: Set up pip cache
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-test-${{ hashFiles('setup.py') }}
restore-keys: |
${{ runner.os }}-${{ matrix.python-version }}-pip-test-
${{ runner.os }}-${{ matrix.python-version }}-pip-
${{ runner.os }}-${{ matrix.python-version }}-
${{ runner.os }}-
- name: Ensure libpcap (Linux)
if: runner.os == 'Linux'
run: sudo apt-get install libpcap-dev
- name: Ensure argp (macOS)
if: runner.os == 'macOS'
run: brew install argp-standalone
- name: Install tox
run: python -m pip install -r requirement/test.txt
- name: Test
env:
PY_VERSION: ${{ matrix.python-version }}
run: tox -e "py${PY_VERSION//.}"
shell: bash
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Determine pip cache path
id: pip-cache
run: echo ::set-output name=dir::$(pip cache dir)
- name: Set up pip cache
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-3.8-pip-lint-${{ hashFiles('setup.*') }}
restore-keys: |
${{ runner.os }}-3.8-pip-lint-
${{ runner.os }}-3.8-pip-
${{ runner.os }}-3.8-
${{ runner.os }}-
- name: Install tox
run: python -m pip install -r requirement/test.txt
- name: Lint
run: tox -e lint