-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbitrise.yml
38 lines (34 loc) · 994 Bytes
/
bitrise.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
format_version: "18"
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
workflows:
test:
before_run:
- check
- e2e
check:
steps:
- git::https://github.com/bitrise-steplib/steps-check.git: { }
e2e:
steps:
- change-workdir:
title: Switch working dir to ./_tmp dir
inputs:
- path: ./_tmp
- is_create_path: true
- path::./:
title: Step Test
inputs:
- packages: github.com/bitrise-steplib/steps-go-test
- script:
title: Output test
inputs:
- content: |-
#!/usr/bin/env bash
echo "code coverage report: ${GO_CODE_COVERAGE_REPORT_PATH}"
if [ ! -f "${GO_CODE_COVERAGE_REPORT_PATH}" ]; then
echo "The file at GO_CODE_COVERAGE_REPORT_PATH does not exist"
exit 1
fi
generate_readme:
steps:
- git::https://github.com/bitrise-steplib/steps-readme-generator.git@main: { }