test every commit on github actions.

This commit is contained in:
fiatjaf 2023-01-20 16:30:03 -03:00
parent 3d58f81ea9
commit 9e58aa85c8
No known key found for this signature in database
GPG Key ID: BAD43C4BE5C1A3A1

18
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: test every commit
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: 1.19.x
- run: go test
- run: go test ./nip13
- run: go test ./nip19
- run: go test ./nip04