Compare commits

..

1 Commits

Author SHA1 Message Date
32dc5dcac5 add provider ini
Some checks failed
continuous-integration/drone/pr Build was killed
continuous-integration/drone/push Build was killed
2024-01-25 21:59:26 +03:00

View File

@@ -1,3 +1,21 @@
---
kind: pipeline
type: docker
name: ini
steps:
- name: test
image: golang
commands:
- cd provider/ini
- go test ./...
- name: golangci-lint
image: golangci/golangci-lint:v1.55
commands:
- cd provider/ini
- golangci-lint run
--- ---
kind: pipeline kind: pipeline
name: default name: default
@@ -53,19 +71,3 @@ steps:
- cd provider/yaml - cd provider/yaml
- golangci-lint run - golangci-lint run
---
kind: pipeline
name: ini
steps:
- name: test
image: golang
commands:
- cd provider/ini
- go test ./...
- name: golangci-lint
image: golangci/golangci-lint:v1.55
commands:
- cd provider/ini
- golangci-lint run