File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,16 @@ ifeq ($(REPO_OWNER),)
14
14
REPO_OWNER="bitcoinschema"
15
15
endif
16
16
17
- .PHONY : clean
18
-
17
+ .PHONY : all
19
18
all : # # Runs multiple commands
20
19
@$(MAKE ) test
21
20
21
+ .PHONY : clean
22
22
clean : # # Remove previous builds and any test cache data
23
23
@go clean -cache -testcache -i -r
24
24
@test $(DISTRIBUTIONS_DIR )
25
25
@if [ -d $( DISTRIBUTIONS_DIR) ]; then rm -r $(DISTRIBUTIONS_DIR ) ; fi
26
26
27
+ .PHONY : release
27
28
release :: # # Runs common.release then runs godocs
28
29
@$(MAKE ) godocs
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ vet Run the Go vet application
115
115
116
116
## Examples & Tests
117
117
All unit tests and [ examples] ( examples ) run via [ GitHub Actions] ( https://github.com/BitcoinSchema/go-bap/actions ) and
118
- uses [ Go version 1.17 .x] ( https://golang.org/doc/go1.17 ) . View the [ configuration file] ( .github/workflows/run-tests.yml ) .
118
+ uses [ Go version 1.18 .x] ( https://golang.org/doc/go1.18 ) . View the [ configuration file] ( .github/workflows/run-tests.yml ) .
119
119
120
120
Run all tests (including integration tests)
121
121
``` shell script
You can’t perform that action at this time.
0 commit comments