-
Notifications
You must be signed in to change notification settings - Fork 15
86 lines (63 loc) · 1.79 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: "CI"
on:
[push, pull_request]
jobs:
server:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
services:
redis:
image: redis:alpine
ports:
- "6379:6379"
mongo:
image: mongo:6
ports:
- "27017:27017"
elastic:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.25
ports:
- "9200:9200"
env:
discovery.type: single-node
steps:
- uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- run: |
sudo apt-get update
sudo apt-get install pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- run: python -m pip install --upgrade pip wheel setuptools
- run: python -m pip install -r dev-requirements.txt
- name: pytest
run: pytest --ignore=tests/aap/ --disable-pytest-warnings --cov=newsroom
- name: behave (API)
run: behave --format progress2 --logging-level=ERROR features/news_api
- name: behave (Web)
run: behave --format progress2 --logging-level=ERROR features/web_api
- name: black
run: black --check .
client:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14', '18', '20']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: npm install
run: npm ci || npm install
- name: lint
run: npm run lint
- name: test
run: npm run test
- name: build
run: npm run build