forked from django-commons/django-click
-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (63 loc) · 1.75 KB
/
Copy pathci.yml
File metadata and controls
78 lines (63 loc) · 1.75 KB
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
name: build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
# By default, GitHub will maximize the number of jobs run in parallel
# depending on the available runners on GitHub-hosted virtual machines.
# max-parallel: 8
fail-fast: false
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "pypy-3.6"
- "pypy-3.7"
tox-env:
- "dj22" # LTS
- "dj31"
- "dj32" # LTS
exclude:
# Python 3.9 is compatible with Django 3.1+
- python-version: "3.9"
tox-env: "dj22"
- python-version: "3.9"
tox-env: "dj30"
env:
TOXENV: ${{ matrix.tox-env }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip version
run: |
python -m pip install -U pip
- name: Install tox and coverage packages
run: |
pip install tox tox-gh-actions 'coverage<5' coveralls
- name: Run tox and coverage
run: |
tox -e $TOXENV
coverage report
coverage html
# - name: Upload coverage to coveralls
# run: |
# coveralls
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
uses: actions/setup-python@v2
with:
python-version: '3.6'
- name: Install tox and flake8 packages
run: pip install tox tox-gh-actions flake8
- name: Lint
run: tox -e flake8