-
Notifications
You must be signed in to change notification settings - Fork 4
62 lines (60 loc) · 1.64 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
# SPDX-FileCopyrightText: Copyright DB Netz AG and the capella-collab-manager contributors
# SPDX-License-Identifier: CC0-1.0
name: tests
on:
push:
branches: ["**"]
tags: ["v*.*.*"]
pull_request:
branches: [main]
jobs:
backend:
runs-on: ubuntu-latest
name: Run pytest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install python
uses: actions/setup-python@v4
with:
cache: pip
cache-dependency-path: ./backend/pyproject.toml
python-version: "3.11"
- name: Install dependencies
run: |
pip install -e "./backend[dev]"
- name: Run pytest
working-directory: backend
run: |
pytest --cov --cov-report term --cov-report xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
frontend:
runs-on: ubuntu-latest
name: Run frontend karma tests
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Fetch version
working-directory: frontend
run: |
python fetch-version.py
- name: Install dependencies
working-directory: frontend
run: |
npm i -g @angular/cli
npm ci
export CHROME_BIN=$(which chromium)
- name: Run tests
working-directory: frontend
run: |
ng test --watch=false --browsers=ChromeHeadless