-
Notifications
You must be signed in to change notification settings - Fork 186
62 lines (52 loc) · 1.82 KB
/
branch_test_coverage.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
#
# Требования:
# - Тесты должны запускаться при каждом изменении в ветке, чтобы корректно рассчитывалось покрытие тестами при
# последующих изменениях.
# - В джобах точечно указываем пакеты, для которых проверяется покрытие.
#
name: Branch test coverage
run-name: Check ${{ github.ref_name }} branch test coverage
on:
push:
branches:
- master
- '*-stable'
concurrency:
group: branch-test-coverage-${{ github.ref_name }}
cancel-in-progress: true
jobs:
# Создаем кэш для LFS в мастере, чтобы другие ветки могли его получить.
# Кэш требуется для того, чтобы не превышать лимиты GitHub
lfs:
runs-on: ubuntu-latest
name: Create LFS cache
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Checkout LFS objects
uses: ./.github/actions/lfs
test:
name: Call reusable unit tests workflow
uses: ./.github/workflows/reusable_workflow_test.yml
with:
workspace: '@vkontakte/vkui'
deploy_test_coverage:
if: ${{ !cancelled() && (success() || failure()) }}
needs: test
runs-on: ubuntu-latest
name: Deploy test coverage
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download test artifact
uses: actions/download-artifact@v4
with:
name: test-output
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
files: .nyc_output/coverage-final.json
fail_ci_if_error: true
verbose: true