-
Notifications
You must be signed in to change notification settings - Fork 62
56 lines (52 loc) · 1.48 KB
/
testacc.yml
File metadata and controls
56 lines (52 loc) · 1.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
name: TestAcc
on:
workflow_call:
workflow_dispatch:
# Run Every Tuesday at 09:00 AM UTC (1AM PST)
schedule:
- cron: '0 9 * * 2'
# This prevents more than one run of this workflow from executing at a time.
# Up to 1 additional run will be queued, with anything futher being cancelled from the queue.
concurrency:
group: testacc
cancel-in-progress: false
permissions:
contents: write
# Runs all Acceptance test groups in parallel to encompass the entire provider.
# These will be enabled as they are onboarded.
jobs:
testacc_iam:
name: IAM
uses: ./.github/workflows/_testacc_iam.yml
secrets: inherit
testacc_platform:
name: Platform
uses: ./.github/workflows/_testacc_platform.yml
secrets: inherit
testacc_boundary:
name: Boundary
uses: ./.github/workflows/_testacc_boundary.yml
secrets: inherit
testacc_packer:
name: Packer
uses: ./.github/workflows/_testacc_packer.yml
secrets: inherit
testacc_consul:
name: Consul
uses: ./.github/workflows/_testacc_consul.yml
secrets: inherit
testacc_vault:
name: Vault
uses: ./.github/workflows/_testacc_vault.yml
secrets: inherit
# testacc_vaultsecrets:
# name: Vault Secrets
# uses: ./.github/workflows/_testacc_vaultsecrets.yml
testacc_vaultradar:
name: Vault Radar
uses: ./.github/workflows/_testacc_vaultradar.yml
secrets: inherit
testacc_waypoint:
name: Waypoint
uses: ./.github/workflows/_testacc_waypoint.yml
secrets: inherit