This repository was archived by the owner on Jan 24, 2026. It is now read-only.
fix check duplicate for pool subMany #895
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test every commit | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| test: | |
| # temporary using newest ubuntu instead of ubuntu-latest since | |
| # libsecp256k1-dev does not have secp256k1_schnorrsig_sign32 in jammy | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install libsecp256k1-dev | |
| run: sudo apt-get install libsecp256k1-dev | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: ./go.mod | |
| - run: go test ./... -tags=sonic |