Try out just
This commit is contained in:
parent
a4e11fc6c4
commit
b3d5045ca7
2 changed files with 23 additions and 6 deletions
11
.build.yml
11
.build.yml
|
@ -3,6 +3,7 @@ packages:
|
|||
- docker
|
||||
- docker-buildx
|
||||
- go
|
||||
- just
|
||||
- revive
|
||||
- staticcheck
|
||||
secrets:
|
||||
|
@ -12,18 +13,16 @@ sources:
|
|||
tasks:
|
||||
- test: |
|
||||
cd ntfy-alertmanager
|
||||
go test -v ./...
|
||||
just test
|
||||
- lint: |
|
||||
cd ntfy-alertmanager
|
||||
go vet ./...
|
||||
staticcheck ./...
|
||||
revive ./...
|
||||
just lint
|
||||
- build: |
|
||||
cd ntfy-alertmanager
|
||||
go build
|
||||
just build
|
||||
- gofmt: |
|
||||
cd ntfy-alertmanager
|
||||
test -z $(gofmt -l .)
|
||||
just gofmt
|
||||
- dev-image: |
|
||||
cd ntfy-alertmanager/docker
|
||||
if [ "$BUILD_SUBMITTER" != "git.sr.ht" ] || [ "$(git rev-parse master)" != "$(git rev-parse HEAD)" ]
|
||||
|
|
18
.justfile
Normal file
18
.justfile
Normal file
|
@ -0,0 +1,18 @@
|
|||
test:
|
||||
go test -v ./...
|
||||
|
||||
lint:
|
||||
go vet ./...
|
||||
staticcheck ./...
|
||||
revive ./...
|
||||
|
||||
gofmt:
|
||||
gofmt -l .
|
||||
test -z $(gofmt -l .)
|
||||
|
||||
build:
|
||||
go build
|
||||
|
||||
upgrade-deps:
|
||||
go get -u ./...
|
||||
go mod tidy
|
Loading…
Add table
Reference in a new issue