8000 Update retry_signer_client.go · cometbft/cometbft@db33741 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat(privval): extend privval.Message interface to support signing arbitrary hashes #18486

feat(privval): extend privval.Message interface to support signing arbitrary hashes

feat(privval): extend privval.Message interface to support signing arbitrary hashes #18486

Workflow file for this run

name: Test
on:
pull_request:
merge_group:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
part: ["00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19"]
steps:
- uses: actions/checkout@v4
- id: filter
uses: dorny/paths-filter@v3
with:
filters: |
code:
- '**/*.go'
- 'Makefile'
- 'go.*'
- run: echo "GO_VERSION=$(cat .github/workflows/go-version.env | grep GO_VERSION | cut -d '=' -f2)" >> $GITHUB_ENV
if: steps.filter.outputs.code == 'true'
- uses: actions/setup-go@v5
if: steps.filter.outputs.code == 'true'
with:
go-version: ${{ env.GO_VERSION }}
- name: Run Go Tests
if: steps.filter.outputs.code == 'true'
run: |
make test-group-${{ matrix.part }} NUM_SPLIT=20
0