File: justfile

package info (click to toggle)
golang-github-sagikazarmark-locafero 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 176 kB
  • sloc: makefile: 2
file content (14 lines) | stat: -rw-r--r-- 175 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
default:
    just --list

test:
    go test -race -v ./...

fuzz:
    go test -race -v -fuzz=Fuzz -fuzztime=60s ./...

lint:
    golangci-lint run

fmt:
    golangci-lint fmt