turns out we don't need just to run tests.

This commit is contained in:
fiatjaf 2023-11-07 22:24:02 -03:00
parent fe17b5c0ad
commit 8bd03cbaed
No known key found for this signature in database
GPG Key ID: BAD43C4BE5C1A3A1
2 changed files with 1 additions and 19 deletions

View File

@ -11,5 +11,4 @@ jobs:
- uses: actions/setup-go@v3
with:
go-version-file: ./go.mod
- uses: extractions/setup-just@v1
- run: just test-all
- run: go test ./...

View File

@ -1,17 +0,0 @@
build-all:
#!/usr/bin/env bash
for dir in $(find . -maxdepth 1 -type d -name "nip*"); do
go build "./$dir"
done
go build ./
go build ./nson
go build ./binary
test-all:
#!/usr/bin/env bash
for dir in $(find . -maxdepth 1 -type d -name "nip*"); do
go test "./$dir"
done
go test ./
go test ./nson
go test ./binary