Skip to content

Canton v2.0.0

Canton v2.0.0 #1156

Workflow file for this run

name: EDS Tests
on:
push:
branches: [develop, main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test-go:
name: Run Go tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Run Go tests
run: |
cd eds
go test -v -count=1 -timeout 20m ./...