File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
paths :
8
8
- ' tools/diff-processor/**'
9
+ - ' .github/workflows/unit-tests-diff-processor.yml'
9
10
10
11
jobs :
11
12
test :
@@ -18,13 +19,24 @@ jobs:
18
19
with :
19
20
go-version : ' ^1.21.0'
20
21
21
- - name : Build
22
+ - name : Build with TPG
22
23
run : |
23
24
cd tools/diff-processor
24
25
make clone OWNER_REPO=hashicorp/terraform-provider-google DEPTH=1
25
26
make build OLD_REF=main NEW_REF=main
26
27
27
- - name : Test
28
+ - name : Test with TPG
29
+ run : |
30
+ cd tools/diff-processor
31
+ go test -v ./...
32
+
33
+ - name : Build with TPGB
34
+ run : |
35
+ cd tools/diff-processor
36
+ make clone OWNER_REPO=hashicorp/terraform-provider-google-beta DEPTH=1
37
+ make build OLD_REF=main NEW_REF=main
38
+
39
+ - name : Test with TPGB
28
40
run : |
29
41
cd tools/diff-processor
30
42
go test -v ./...
You can’t perform that action at this time.
0 commit comments