-
Notifications
You must be signed in to change notification settings - Fork 8
138 lines (117 loc) · 3.22 KB
/
Copy pathtests.yml
File metadata and controls
138 lines (117 loc) · 3.22 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
name: Tests CI
on:
push:
pull_request:
branches:
- "main"
workflow_dispatch:
concurrency:
group: tests-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
checks: write
pull-requests: write
defaults:
run:
shell: bash
jobs:
ERC20Contract:
name: ERC20 Contract Test Suite
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: ERC20
ERC721Contract:
name: ERC721 Contract Test Suite
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: ERC721
TokenCreateContract:
name: Token Create Test Suite
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: TokenCreateContract
TokenQueryContract:
name: Token Query Test Suite
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: TokenQueryContract
TokenManagmentContract:
name: Token Managment Test Suite
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: TokenManagmentContract
TokenTransferContract:
name: Token Transfer Test Suite
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: TokenTransferContract
HIP755:
name: HIP755 Test Suite
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: HIP755
HRC:
name: HRC Test Suite
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: HRC
PrngSystemContract:
name: PrngSystemContract Test Suite
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: PrngSystemContract
HederaAccountService:
name: HederaAccountService Test Suite
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: HAS
HIP904Batch1:
name: HIP904 Contract Test Suite Batch 1
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: HIP904Batch1
HIP904Batch2:
name: HIP904 Contract Test Suite Batch 2
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: HIP904Batch2
HIP904Batch3:
name: HIP904 Contract Test Suite Batch 3
uses: ./.github/workflows/test-workflow.yml
with:
testfilter: HIP904Batch3
PublishResults:
name: Publish Results
if: ${{ !cancelled() }}
needs:
- ERC20Contract
- ERC721Contract
- TokenCreateContract
- TokenQueryContract
- TokenManagmentContract
- TokenTransferContract
- HIP755
- HRC
- PrngSystemContract
- HederaAccountService
- HIP904Batch1
- HIP904Batch2
- HIP904Batch3
runs-on: hl-contr-lin-md
steps:
- name: Harden Runner
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
with:
egress-policy: audit
- name: Download Test Reports
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
pattern: Test Results (*)
merge-multiple: true
- name: Publish Test Report
uses: step-security/publish-unit-test-result-action@43e0c963eea0ace6eca353cb1d814d857fee5c53 # v2.20.2
with:
check_name: Test Results
json_thousands_separator: ','
junit_files: 'test-*.xml'