oapi-type-definitions-extra.../makefile

9 lines
374 B
Makefile
Raw Normal View History

2023-01-12 13:54:55 +00:00
example:
2023-03-13 19:34:54 +00:00
go run ./src/main.go ./examples/in/ ./examples/out/ testpackage
2023-01-12 14:35:06 +00:00
2023-01-12 15:03:38 +00:00
example_container:
2023-06-05 16:39:13 +00:00
docker run --pull always --rm -v "${PWD}/examples:/examples" gitea.linuxcode.net/linuxcode/oapi-type-definitions-extractor:latest /examples/in /examples/out dto
2023-01-12 15:03:38 +00:00
2023-01-12 14:35:06 +00:00
lint:
2023-03-13 19:34:54 +00:00
docker run --rm -v "${PWD}/src:/src" golangci/golangci-lint:v1.50 /bin/sh -c "cd /src && golangci-lint run"