Skip to content

Commit 5efe87d

Browse files
committed
Minor fixes and changes
1 parent ba3786e commit 5efe87d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,16 @@ ifeq ($(REPO_OWNER),)
1414
REPO_OWNER="bitcoinschema"
1515
endif
1616

17-
.PHONY: clean
18-
17+
.PHONY: all
1918
all: ## Runs multiple commands
2019
@$(MAKE) test
2120

21+
.PHONY: clean
2222
clean: ## Remove previous builds and any test cache data
2323
@go clean -cache -testcache -i -r
2424
@test $(DISTRIBUTIONS_DIR)
2525
@if [ -d $(DISTRIBUTIONS_DIR) ]; then rm -r $(DISTRIBUTIONS_DIR); fi
2626

27+
.PHONY: release
2728
release:: ## Runs common.release then runs godocs
2829
@$(MAKE) godocs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ vet Run the Go vet application
115115

116116
## Examples & Tests
117117
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).
119119

120120
Run all tests (including integration tests)
121121
```shell script

0 commit comments

Comments
 (0)