2021-05-31 23:43:07 +03:00
|
|
|
image: alpine/edge
|
|
|
|
packages:
|
|
|
|
- go
|
2021-06-01 09:00:27 +03:00
|
|
|
- git
|
2021-06-01 08:42:23 +03:00
|
|
|
- make
|
2021-05-31 23:43:07 +03:00
|
|
|
sources:
|
|
|
|
- https://git.sr.ht/~motiejus/undocker
|
|
|
|
tasks:
|
2021-06-01 09:00:27 +03:00
|
|
|
- setup: |
|
2021-06-01 09:07:32 +03:00
|
|
|
go install honnef.co/go/tools/cmd/staticcheck@latest
|
2021-05-31 23:43:07 +03:00
|
|
|
- test: |
|
2021-06-01 08:43:36 +03:00
|
|
|
make -C undocker coverage.html
|
2021-06-01 09:00:27 +03:00
|
|
|
- lint: |
|
2021-06-01 19:47:45 +03:00
|
|
|
make -C undocker -j$(nproc) -O lint
|
2021-08-23 16:32:35 +03:00
|
|
|
- all: |
|
|
|
|
make -C undocker -j$(nproc) -O all
|
2021-05-31 23:43:07 +03:00
|
|
|
artifacts:
|
2021-06-01 08:42:23 +03:00
|
|
|
- undocker/coverage.html
|