Skip to content

Go implementation of encrypt/decrypt and ECDH to work together with the circuits #115

Go implementation of encrypt/decrypt and ECDH to work together with the circuits

Go implementation of encrypt/decrypt and ECDH to work together with the circuits #115

Workflow file for this run

name: Golang SDK
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
golang-test:
env:
TEST_ARGS: -v
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
path: zeto

Check failure on line 17 in .github/workflows/golang.yaml

View workflow run for this annotation

GitHub Actions / Golang SDK

Invalid workflow file

The workflow is not valid. .github/workflows/golang.yaml (Line: 17, Col: 9): Unexpected value 'path' .github/workflows/golang.yaml (Line: 23, Col: 9): Unexpected value 'path'
with:
fetch-depth: 0
- name: Checkout kaleido's fork of go-iden3-crypto
uses: actions/checkout@v3
path: go-iden3-crypto
with:
repository: kaleido-io/go-iden3-crypto
ref: multi-states
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22
- name: Build and Test
working-directory: zeto/go-sdk
run: make
- uses: codecov/codecov-action@v4
with:
codecov_yml_path: ./zeto/codecov.yml
token: ${{ secrets.CODECOV_TOKEN }}