We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dea88f1 commit 35153adCopy full SHA for 35153ad
.github/workflows/functional-tests.yaml
@@ -46,6 +46,20 @@ jobs:
46
repository: ${{ inputs.checkout-repository }}
47
persist-credentials: false
48
49
+ # TODO: May be worth caching this binary, given there are several places
50
+ # that build the binary in workflows. For now, just build this to allow
51
+ # functional tests to work as expected.
52
+ - name: Setup Go
53
+ uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
54
+ with:
55
+ go-version-file: go.mod
56
+
57
+ - name: Ensure Modules
58
+ run: make tidy
59
60
+ - name: Build Binary
61
+ run: make bin
62
63
- name: Set up Python 3.x
64
uses: ./.github/actions/setup-python
65
0 commit comments