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 8436f1c commit 18ef6c9Copy full SHA for 18ef6c9
1 file changed
.github/workflows/cadence-tests.yml
@@ -13,10 +13,15 @@ jobs:
13
- name: Checkout
14
uses: actions/checkout@v4
15
16
- - name: Install Flow CLI
+ - name: Setup Go (for Flow CLI install)
17
+ uses: actions/setup-go@v5
18
+ with:
19
+ go-version: stable
20
+
21
+ - name: Install Flow CLI v2.7.2 (matches local)
22
run: |
- sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)"
- echo "$HOME/.local/bin" >> $GITHUB_PATH
23
+ go install github.com/onflow/flow-cli/cmd/flow@v2.7.2
24
+ echo "$HOME/go/bin" >> $GITHUB_PATH
25
flow version
26
27
- name: Cache Flow emulator data (disabled)
0 commit comments