Files
go-nostr/.github/workflows/test.yml
Yasuhiro Matsumoto 53ff9019d6 use ubuntu-24.04
2024-07-29 14:46:31 -03:00

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 ./...