-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (82 loc) · 2.14 KB
/
tests.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
name: Tests
on:
push:
branches:
- 'master'
tags: [ '*' ]
pull_request:
branches:
- 'master'
jobs:
tests:
strategy:
max-parallel: 7
matrix:
os:
- ubuntu-latest
redis-version:
- '5'
- '6'
- '7'
python-version:
- '3.9'
- '3.10'
- '3.11'
include:
- os: ubuntu-latest
redis-version: '6'
python-version: '3.8'
coverage: true
lint: true
- os: ubuntu-latest
redis-version: '6'
python-version: pypy-3.8
- os: ubuntu-latest
redis-version: '6'
python-version: pypy-3.9
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U hatch
- name: ruff
if: ${{ matrix.lint }}
run: |
hatch run lint:ruff check aioworkers_redis tests
- name: isort
if: ${{ matrix.lint }}
run: |
hatch run lint:isort -c aioworkers_redis tests
- name: black
if: ${{ matrix.lint }}
run: |
hatch run lint:black --check --diff aioworkers_redis tests
- name: mypy
if: ${{ matrix.lint }}
run: |
hatch run lint:mypy aioworkers_redis tests
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: ${{ matrix.redis-version }}
- name: Tests with coverage
run: |
hatch run cov
- name: coverage.xml
if: ${{ matrix.coverage }}
run: |
hatch run coverage xml
- name: Upload coverage to Codecov
if: ${{ matrix.coverage }}
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true