-
Notifications
You must be signed in to change notification settings - Fork 4
46 lines (38 loc) · 1001 Bytes
/
ci.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
name: CI
on:
push:
paths-ignore:
- '.cookiecutter/*'
- 'docs/*'
- 'requirements/*.in'
- 'requirements/dev.txt'
- '**/.gitignore'
- '*.md'
- 'LICENSE'
workflow_call:
jobs:
backend:
name: Backend
runs-on: ubuntu-latest
env:
TOX_PARALLEL_NO_SPINNER: 1
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version'
- name: Update pip
run: python -m pip install --upgrade pip
- name: Install tox
run: python -m pip install 'tox<4'
- name: Cache the .tox dir
uses: actions/cache@v3
with:
path: .tox
key: ${{ runner.os }}-tox-${{ hashFiles('tox.ini', 'requirements*', 'setup.py', 'setup.cfg') }}
restore-keys: |
${{ runner.os }}-tox-
- name: Run tox
run: tox --parallel -e lint,checkformatting,tests,coverage,functests