-
Notifications
You must be signed in to change notification settings - Fork 8
61 lines (50 loc) · 1.2 KB
/
bar-api.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
---
name: BAR-API
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.8, 3.9, 3.10.11, 3.11]
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- 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: |
sudo systemctl start mysql.service
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
- name: Initial setup
run: ./config/init.sh
- name: Lint with flake8
run: flake8
- name: Pytest run by coverage
run: |
coverage run
coverage xml
env:
REDIS_HOST: localhost
REDIS_PORT: 6379
CI: true
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: false