-
Notifications
You must be signed in to change notification settings - Fork 5
74 lines (68 loc) · 1.84 KB
/
test.yaml
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
name: test
on:
pull_request:
push:
branches:
- main
env:
PYTHON_VERSION: "3.11.x"
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "${{ env.PYTHON_VERSION }}"
- run: pip install pre-commit
- uses: actions/cache@v3
id: pre-commit-cache
with:
path: ~/.cache/pre-commit
key: key-0
- run: pip install printf-log-formatter black isort
- run: pre-commit run --all-files
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.11.x" ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- uses: actions/cache@v3
id: poetry-cache
with:
path: ~/.local
key: ${{ matrix.python-version }}-0
- uses: snok/install-poetry@v1
with:
virtualenvs-create: false
version: latest
- uses: actions/cache@v3
id: cache-venv
with:
path: .venv
key: ${{ hashFiles('**/poetry.lock') }}-${{ matrix.python-version }}-0
- run: |
python -m venv .venv
source .venv/bin/activate
pip install -U pip
poetry install --no-interaction --no-root --with=development
if: steps.cache-venv.outputs.cache-hit != 'true'
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: redis-tools
version: 0
- name: Run tests
run: |
docker compose up -d
chmod +x ./setup-cluster.sh
./setup-cluster.sh
source .venv/bin/activate
coverage run -m pytest tests
coverage xml
coverage report