-
Notifications
You must be signed in to change notification settings - Fork 5
43 lines (35 loc) · 1.21 KB
/
Copy pathmerge-develop.yml
File metadata and controls
43 lines (35 loc) · 1.21 KB
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
name: merge-develop
on:
push:
branches:
- develop
jobs:
coverage:
runs-on: ubuntu-latest
if: github.repository == 'NHSDigital/terraform-aws-mesh-client' && !contains(github.event.head_commit.message, 'tag release version:')
steps:
- name: checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- name: common build setup
uses: ./.github/actions/build-common
- name: ci install
uses: ./.github/actions/install-ci
- name: start localstack
run: make up-ci
- name: coverage and sonar scan
uses: ./.github/actions/coverage-and-sonar
if: github.actor != 'dependabot[bot]' && (success() || failure())
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
sonar-token: ${{ secrets.SONAR_TOKEN }}
- name: publish junit reports
if: success() || failure()
uses: mikepenz/action-junit-report@3a81627bfac62268172037048872e8ebd4207e6d # v6.4.1
with:
check_name: junit reports
report_paths: reports/junit/*.xml
- name: stop docker containers
if: success() || failure()
run: make down