mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-11-15 00:27:43 +01:00
22 lines
487 B
YAML
22 lines
487 B
YAML
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 ./...
|