diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-09-05 20:34:02 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-09-05 20:52:59 +0900 |
| commit | dd1c68425120fca008a3b10991c865ea586c7002 (patch) | |
| tree | 13784e4e2923d7a51a63ba148c89907ef73cce6f /worker/swift/Makefile | |
| parent | c7941d027be068f6e563a17e882232580fe15334 (diff) | |
| download | iosdc-japan-2025-albatross-dd1c68425120fca008a3b10991c865ea586c7002.tar.gz iosdc-japan-2025-albatross-dd1c68425120fca008a3b10991c865ea586c7002.tar.zst iosdc-japan-2025-albatross-dd1c68425120fca008a3b10991c865ea586c7002.zip | |
feat(worker): add swift worker
Diffstat (limited to 'worker/swift/Makefile')
| -rw-r--r-- | worker/swift/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/worker/swift/Makefile b/worker/swift/Makefile new file mode 100644 index 0000000..6ee4f47 --- /dev/null +++ b/worker/swift/Makefile @@ -0,0 +1,10 @@ +.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 |
