File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 82
82
uses : ./.github/actions/collect-logs
83
83
if : always()
84
84
85
+ kat-tests : # #####################################################################
86
+ runs-on : ubuntu-latest
87
+ name : Run KAT Tests
88
+ needs :
89
+ - pytest
90
+ steps :
91
+ - name : Checkout Repo
92
+ uses : actions/checkout@v4
93
+ with :
94
+ fetch-depth : 0
95
+ - name : Install Deps
96
+ uses : ./.github/actions/setup-deps
97
+ with :
98
+ install-golang : " false"
99
+ - name : Create Python Virtual Env
100
+ shell : bash
101
+ run : >-
102
+ make python-virtual-environment
103
+ - name : Run KAT Tests
104
+ env :
105
+ PYTEST_ARGS : --no-cov
106
+ run : |
107
+ make pytest-kat-envoy3
108
+ - name : Collect Job Logs
109
+ uses : ./.github/actions/collect-logs
110
+ if : always()
111
+
85
112
build : # ######################################################################
86
113
name : Build w/ GoReleaser
87
114
needs :
You can’t perform that action at this time.
0 commit comments