Skip to content

Commit 973a4a2

Browse files
committed
chore: add a make goal to run the validations
1 parent 9045df8 commit 973a4a2

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,12 @@ formatted markup, and other things. To run the tests:
101101
$ docker buildx bake validate
102102
```
103103

104+
or, using the Makefile:
105+
106+
```console
107+
$ make validate
108+
```
109+
104110
If this command doesn't result in any errors, you're good to go!
105111

106112
## Content not edited here

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
.PHONY: validate
2+
validate: ## run validations
3+
docker buildx bake validate
4+
15
.PHONY: vendor
26
vendor: ## vendor hugo modules
37
./hack/vendor

0 commit comments

Comments
 (0)