We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8afc68 commit 70b4a5cCopy full SHA for 70b4a5c
1 file changed
.github/workflows/build-and-test-go.yml
@@ -39,15 +39,26 @@ jobs:
39
40
- name: Build Merkle Tree bindings
41
run: make build_merkle_tree_linux
42
-
43
- - name: Build Mina bindings
44
- run: make build_mina_linux
45
46
- - name: Build Mina Account bindings
47
- run: make build_mina_account_linux
48
+
49
- name: Build operator
50
run: go build operator/cmd/main.go
51
52
- name: Build aggregator
53
run: go build aggregator/cmd/main.go
+ build-mina:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
54
55
+ - uses: actions/setup-go@v5
56
+ with:
57
+ go-version: "1.23"
58
+ cache: false
59
60
+ - name: Build Mina bindings
61
+ run: make build_mina_linux
62
63
+ - name: Build Mina Account bindings
64
+ run: make build_mina_account_linux
0 commit comments