-
Notifications
You must be signed in to change notification settings - Fork 6
48 lines (44 loc) · 1.16 KB
/
integration.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
name: Integration
on:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-execution:
runs-on: ubuntu-latest
services:
httpbin:
image: kennethreitz/httpbin:latest
ports:
- 8080:80
steps:
- uses: actions/checkout@v4
- name: 'Option test'
uses: ./
with:
command: run
path_pattern: testdata/path/to/*.yml
debug: true
verbose: true
fail-fast: true
skip-test: false
shuffle: true
concurrent: true
env:
# Override parameters in scenario with environment variables
# NOTE: Specify `172.17.0.1` when accessing services on the GitHub Actions host.
HTTPBIN_END_POINT: http://172.17.0.1:8080/
- name: 'Check input parameter test'
id: fail-step
uses: ./
with:
command: completion
path_pattern: testdata/path/to/exec.yml
debug: true
verbose: true
fail-fast: true
skip-test: false
shuffle: true
concurrent: true
continue-on-error: true