forked from jendrikseipp/vulture
-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (51 loc) · 1.78 KB
/
main.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
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
# Run daily (* needs quotes).
- cron: '0 4 * * *'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['pypy3', '3.6', '3.7', '3.8', '3.9', '3.10']
os: [macos-10.15, ubuntu-18.04, ubuntu-20.04, windows-2019]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade coveralls setuptools tox wheel
- name: Build wheel
run: python setup.py bdist_wheel
- name: Install Vulture from wheel (for Linux and MacOS)
if: ${{ matrix.os != 'windows-2019' }}
run: "python -m pip install --only-binary=:all: ./dist/vulture-*.whl"
- name: Install Vulture from wheel (for Windows)
if: ${{ matrix.os == 'windows-2019' }}
run: "python -m pip install --only-binary=:all: --ignore-installed --find-links=dist/ vulture"
- name: Run Vulture
run: |
vulture vulture/ tests/
python -m vulture vulture/ tests/
# Tox fails to find PyPy on Windows. Neither "tox -e py" nor "tox -e pypy3" works.
- name: Run tests
if: ${{ matrix.python-version != 'pypy3' || matrix.os != 'windows-2019' }}
run: python -m tox -e py
- name: Check for style issues
if: ${{ matrix.python-version == 3.6 && matrix.os == 'ubuntu-20.04' }}
run: python -m tox -e style
- name: Report coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml