diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-13 21:43:51 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-13 21:58:25 +0900 |
| commit | dff818158c790481868c995e0209f13aeb106251 (patch) | |
| tree | 8c666ea05faa7dd6d7aacc22b67a3224917a80ec /worker | |
| parent | 7037bd46431830e4d4ad46b2e136243e8455ac02 (diff) | |
| download | phperkaigi-2026-albatross-dff818158c790481868c995e0209f13aeb106251.tar.gz phperkaigi-2026-albatross-dff818158c790481868c995e0209f13aeb106251.tar.zst phperkaigi-2026-albatross-dff818158c790481868c995e0209f13aeb106251.zip | |
chore: replace Makefile with justfile
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'worker')
| -rw-r--r-- | worker/swift/Makefile | 10 | ||||
| -rw-r--r-- | worker/swift/justfile | 3 |
2 files changed, 3 insertions, 10 deletions
diff --git a/worker/swift/Makefile b/worker/swift/Makefile deleted file mode 100644 index 6ee4f47..0000000 --- a/worker/swift/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -.PHONY: all -all: check lint - -.PHONY: check -check: - go build -o /dev/null ./... - -.PHONY: lint -lint: - go run github.com/golangci/golangci-lint/cmd/golangci-lint run diff --git a/worker/swift/justfile b/worker/swift/justfile new file mode 100644 index 0000000..46f0320 --- /dev/null +++ b/worker/swift/justfile @@ -0,0 +1,3 @@ +check: + go build -o /dev/null ./... + go run github.com/golangci/golangci-lint/cmd/golangci-lint run |
