Skip to content

initial commit for new client #1213

initial commit for new client

initial commit for new client #1213

Workflow file for this run

name: Go Test
on:
push:
branches: [main]
pull_request:
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
cache: true
- name: Download dependencies
run: go mod download
- name: Run Go tests
run: |
go test -v -timeout 5m ./...
shell: bash
env:
HOTSTUFF_LOG: info
- name: Run docker tests
if: runner.os == 'Linux'
run: |
cd scripts
bash deploy_test.sh