-
Notifications
You must be signed in to change notification settings - Fork 20
57 lines (50 loc) · 1.38 KB
/
pythonapp.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
name: Test
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 8 * * *'
jobs:
test:
name: '${{ matrix.os }} Python ${{ matrix.python-version }} Django ${{ matrix.django }}'
runs-on: ${{ matrix.os }}
env:
PYTHONUNBUFFERED: 1
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest] # TODO: windows-latest
python-version: [3.9, 3.8, 3.7]
django: [2.2, 3.1, 3.2]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 'fetch master'
run: |
git fetch origin master
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v2
with:
python-version: '${{ matrix.python-version }}'
- name: 'Install package'
run: |
make install-poetry
poetry lock
poetry show --tree
make install
- name: 'List installed packages'
run: |
poetry run pip freeze
- name: 'List all tox test environments'
run: |
make tox-listenvs
- name: 'Run tests on ${{ matrix.os }} with Python ${{ matrix.python-version }} Django ${{ matrix.django }}'
run: |
poetry run tox -e python-django${{ matrix.django }}
env:
PYTEST_ADDOPTS: "-c pytest-ci.ini"
- name: 'Upload coverage report'
run: bash <(curl -s https://codecov.io/bash)