add a default user-agent: github.com/nbd-wtf/go-nostr. #585
This file contains 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 ./... |